Hey. I need a query that will show me change requests with priority blocker and bugs with priority blocker and critical. also Id like to see only issues NOT in status done, rejected or canceled.
I wrote something like this
issuetype = "Change request" AND priority = Blocker OR issuetype = Bug AND priority = Blocker AND priority = Critical AND status not in (Done, Rejected, Canceled)
But I think it wont work as intended.. I cant put whole issuetype in parenthesis, so how would I make such a query? :(
this should do it:
((issuetype = "Change request" AND priority = Blocker) OR (issuetype = Bug AND priority in ("Blocker, Critical))) AND status not in (Done, Rejected, Canceled)
Thanks ! I missed one parenthesis when I was trying myself :)
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.
Okay, one more question. Any idea why when I save
((issuetype = "Change request" AND priority = Blocker) OR (issuetype = Task AND priority = Blocker) OR (issuetype = Bug AND priority in (Blocker, Critical))) AND status not in (Done, Rejected, Canceled) ORDER BY priority DESC
Jira removes parenthesis on issuetypes ? so when I open the saved query again I get
(issuetype = "Change request" AND priority = Blocker OR issuetype = Task AND priority = Blocker OR issuetype = Bug AND priority in (Blocker, Critical)) AND status not in (Done, Rejected, Canceled) ORDER BY priority DESC"
is this giving me the same results ?
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.