You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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.