After Issue typ has changed

Tomas Gustavsson
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 25, 2020

Is there any one, who know if it is possible to search on tickets, that has have a certain issue type, but were the issue type has been changed.

E.g Ticket A-1234 has issue type Task, when it is created, and we have then changed to Request.  Later in the process. 


Now we would like to find all tickets that previus have had the Task, issue type.

Best Regards
Tomas 

2 answers

1 accepted

0 votes
Answer accepted
Jack Nolddor _Sweet Bananas_
Atlassian Partner
March 25, 2020

Hi Tomas,

Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:

 

** Note that these are just some examples, you must tune your query to fit your needs **

 

• 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")

 


Using this app you can also query issues moved from one project to another:

 

References:

 

Hope this helps you to create awesome queries <3

Kind regards

Tomas Gustavsson
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 25, 2020

Aha, 

Thank you so much, this will help a lot, like it already .

 

/Tomas

0 votes
Gonchik Tsymzhitov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 25, 2020

Hm, why do you want to find that tickets? 

As I see only  everything in issue history one by one. 

hence you can use jql like:

project=A and type =Request and type was Task

 unfortunately, was is not present to that field :(

Suggest an answer

Log in or Sign up to answer