Show issues that contain only a single, specific value in a label

kieran campbell February 21, 2021

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?

 

2 answers

2 accepted

1 vote
Answer accepted
Sandesh Shetty
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 21, 2021
kieran campbell February 22, 2021

Thanks Sandesh

0 votes
Answer accepted
Pramodh M
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 21, 2021

Hi @kieran campbell 

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

kieran campbell February 22, 2021

Thanks Pramodh, this answer gave me what I needed.

ZC November 18, 2023

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.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events