Can JQL provide me all status changes from QA to In Dev and UAT to in Dev in one query?

Jason Pines December 14, 2017

The two queries provide me the information I need, but I am curious if anybody can do this with one filter?

priority = Must AND (issuetype = Story OR issuetype = "Bug/Defect") AND project != "Web Content" AND status changed from 10009 to 3 during (-14d, now())  ORDER BY project ASC

priority = Must AND (issuetype = Story OR issuetype = "Bug/Defect") AND project != "Web Content" AND status changed from 10019 to 3 during (-14d, now())  ORDER BY project ASC

Thank you

 

1 answer

1 accepted

0 votes
Answer accepted
Alexey Matveev
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.
December 14, 2017

priority = Must AND (issuetype = Story OR issuetype = "Bug/Defect") AND project != "Web Content" AND ((status changed from 10019 to 3 during (-14d, now())) OR (status changed from 10009 to 3 during (-14d, now())))  ORDER BY project ASC

Jason Pines December 14, 2017

Thank you,

Works great

Suggest an answer

Log in or Sign up to answer