...
Example JQL | Description |
---|---|
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 EMPTY | Issues 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.
...
Example for referenceAsset search function | Example for assetByField JQL function |
---|---|
referenceAsset("asset.assetTag", "\"marla singer\"") | assetByField("asset.assetTag", "\"marla singer\"") |
A few examples here:
JQL | Description |
---|---|
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.
...