I would like to see all the issues that has a ABC label
Tnx, but what if I want to see more than one label. how can I create a drop down list of all my labels
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL does not have parameter entry, there's no option of a "drop down list" (of anything, let alone labels)
But you can filter for a list, try
label in (label1, label2, label3)
You are limited only by the maximum length of the text of a filter, I have a feeling it's something like 254 characters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
label = "specific-label"
will return all issues with "specific-label" as a label.
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.