Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example JQLDescription

Assets ~ Laptop

Asets name like Laptop. Laptop2, MyLaptop or MyLaptop2 matches
Assets ~ 'My Laptop'You must enclose spaces or special characters in a string
Assets is not EMPTYIssues with Asset custom field has a value
Assets ~ '#55'Searches for Asset ID

 


JQL functions

assetByField("FIELD_NAME", "FIELD_VALUE", ...) (Introduced in version 7.0.3)

Assets and Inventory Plugin supports to filter issued with the selected assets' field values.

It exactly works like referenceAsset, please see Search functions for details, just replace the referenceAsset with assetByField

Example for referenceAsset search functionExample for assetByField JQL function
referenceAsset("asset.assetTag", "\"marla singer\"")assetByField("asset.assetTag", "\"marla singer\"")

A few examples here:

JQLDescription

issue in assetByField("Object Approvers", "mdavis-sd-demo")

Find the issues that have assets with "Object Approvers" field is mdavis-sd-demo value. Here mdavis-sd-demo is the user name

issue in assetByField("Object Owner", "tyler@@@marla")

Find the issues that have assets with "Object Owner" field is tyler or marla user names. User key will work also.

issue in assetByField("asset.status", "In stock", "asset.substatus", "Defective")

Find the issues that have assets with "Status" system field is "In Stock" and "Substatus" system field is "Defective". These values must be English value of the field.
Info

You can find examples for all other field types at  Search functions documentation, just remember to replace the referenceAsset with assetByField.

(Deprecated)

As of now, there are three JQL functions bundled with Assets and Inventory Plugin.

...

Code Block
issue in inventoryByAttribute("Memory", "8 GB")
issue in inventoryByAttributeIgnoreCase("First Name", "Tyler")
issue in inventoryByUserAttribute("Owner", "tylerdurden")
issue in inventoryByUserAttribute("Owner") // If you do not pass second attribute, logged in user will be used.

 

...