Hi
I'm trying to write a query based on the label field, where I want to exclude issues that contain a label but only when no other labels are specified.
E.g.
Issue 1, Label Values: x, y, z
Issue 2, Label Values: x,
Issue 3, Label Values: x, z
Issue 4, Label Values: y, z
So that only Issue 2 is excluded from the query.
Any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can achieve this by combining
labels = "label-1"
and
labels not in ("label-b", "label-c") JQL queries
Say if you want only issues with label "x"
The JQL query would go like this,
labels = "x" AND labels not in ("y", "z")
Please let me know if this solved your query.
Thanks,
Pramodh
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.
this is practical only if you have a limited number of labels ("y" & "z" in the given example).
when you have a lot of labels it is not practical.
anyone found another workaround for this?
we have 70+ labels, listing the 69 labels in the "not in" part is not doable.
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.