Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to find the groomed stories in Jira using JQL?

Surya September 11, 2020

Hello,

The issues are moved to "ready for sprint" status once the grooming is done. So, how do we fetch all the groomed stories using JQL?

Thanks

1 answer

1 accepted

0 votes
Answer accepted
Mikael Sandberg
Community Champion
September 11, 2020

Hi @Surya

Welcome to Atlassian Community!

This JQL should get you the groomed stories:

issue type = story AND status = "ready for sprint"

If you have multiple projects using the same workflow and you only want the stories for one of them, then add project = abc to the query too.

Surya September 11, 2020

Yes, I got that but if the status is moved from "Ready for Sprint" to next status. Then, are the stories in the next status are considered to be groomed stories as well?

Mikael Sandberg
Community Champion
September 11, 2020

Okay, so you want to get all stories that are currently in "ready for sprint" and those that have been in the past? If so then you can use the CHANGED JQL operator and the query would then look like this:

issuetype = story AND (status = "Ready for Sprint" OR status CHANGED FROM "Ready for Sprint")

Like Surya likes this

Suggest an answer

Log in or Sign up to answer