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 ?
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.