Is there a JQL Query for tranistion from the Bug issuetype to a different issuetype like Story

Blake Sliter March 11, 2020

QA logs a defect and the initial issuetype is bug
During a bug scrub, the bug issue type was changed to Story or some other issue type.
Is there way to query for issue starting as a bug and then being changed to some other issuetype?

1 answer

1 accepted

0 votes
Answer accepted
Krishnanand Nayak
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.
March 12, 2020

you might have to use the Jtricks plugin. it has the following function that can get you the data you need:

movedIssues([type],[From],[To])

 

https://www.j-tricks.com/jql-tricks-plugin.html 

Blake Sliter March 12, 2020

Thank you Krishnanand_Nayak

Jack Nolddor _Sweet Bananas_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
March 25, 2020

Alternatively, you can also use JQL Booster Pack latest versions and type the following:

 

• Find issues in which their issue type have ever changed:

issue IN issueTypeChanged()

• Find Open issues which once was a Task and their type has changed:

status = Open AND issue IN issueTypeChanged("Task") status = Open AND issue IN issueTypeChanged("Task", "*")

• Find Bugs in which their issue type have once changed to 'Story':

type = Bug AND issue IN issueTypeChanged("*", "Story")

• Find 'Open' issues in which their issue type have changed from 'Feature' to 'Story':

status = Open AND issue IN issueTypeChanged("Feature", "Story")

 

References:

 

Hope this helps you to create awesome queries <3

Kind regards

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events