jira query issue

Samuel May 29, 2014

I have these 3 queries

project = Test AND issuetype = Defect AND "Custom Field" = "vaule A"  This one returns 10 items
project = Test AND issuetype = Defect AND "Custom Field" = "vaule A" AND resolution in (fixed)  This one returns 6 items
project = Test AND issuetype = Defect AND "Custom Field" = "vaule A" AND resolution not in (fixed)  I expect this one to return 4 items but only returns 1

What am I doing wrong ?

1 answer

1 accepted

2 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
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.
May 29, 2014

You have most probably 3 issues which doesn't have any resolution on it.

project = Test AND issuetype = Defect AND "Custom Field" = "vaule A" AND resolution is EMPTY

should return 3 items.

project = Test AND issuetype = Defect AND "Custom Field" = "vaule A" AND (resolution not in (fixed) or resolution is EMPTY)

should return 4 items.

Suggest an answer

Log in or Sign up to answer