I want to query all the labels which are like below set .how can i capture all the labels in a JQL
eg:
AAA_0.1_Test
AAA_0.2_Test
AAA_0.3_Test
AAA_0.4_Test
Current query : (labels in (test, Test) ..<Want to add above JQL here)
Thank you for the quick respond.
I want to search fields where vlaues can be "Test" ,test , xxx_Test
both in simple and capital ,also test/Test can be anywhere in the field "label" eg" xLabel,label , ff_Lablel
then how can i query to get all the values
Have a look a the links Alana gave you, they cover that sort of thing
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@PG Herath to the best of my knowledge the operator '~' is not supported by the 'labels' field in default JIRA.
you may want to try issueFieldMatch (subquery, fieldname, regexp) function in ScriptRunner for Jira
Example:
issueFunction in issueFieldMatch("project = TEST", "labels", "test*")
Reference:
How to search for labels with a wildcard?
hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.