I have the jql query below and for some reason it does not show all issues with this query. I am still missing some issue types even though they are there in the project. Is the query too complex?
project = test AND issuetype not in (problem, bug, task) AND labels not in (label1, label2) and status != Done ORDER BY Rank ASC
Hi @Joe
It cannot show you all the issues because the "Not in" condition excludes the issues contained in the parentheses
Regards
@Vronik I tried the query below without not in and still get the same result
project= "test" AND (type!=problem AND status != done )AND (type!=bug AND status != done ) AND (type!=task AND status != done ) AND (labels != label1) and (labels != label2) ORDER BY rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Joe
if you want all the issues do not discriminate for them, for example:
project = "test" AND status != done AND labels NOT IN (label1, label2) ORDER BY rank
ASK.
Try and tell me..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.