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
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.
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.