I have created a query to show missing Epics in a project. I want to exclude issues that are in the backlog section. I want to include current sprint, groomed and ready, ready for grooming and support backlog sections in the project, thanks.
HI @Jeff Murray
Can you please provide more information about what you need,
It's important for us to properly understand your requirements and how your project is setup to provide accurate answers.
However assuming you want issues without Epic links that are in the statuses "groomed and ready" and "ready for grooming" in the current sprint, the JQL query would look something like this :
project = "your project key" and sprint in openSprints() and status in ("ready for grooming","groomed and ready") and "Epic Link" is EMPTY
Hope this helps
Hello -
1) Missing Epics. Our Product team creates issues (Stories and Tasks) and at times leaves the Epic field blank. I (scrum master / PM) uses queries to have Product populate the Epic field.
2) Per the screen shot below (doesn't show current sprint), I want to have the query look through these (not sure what they are called) and exclude the "Backlog" section that is missing Epics.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
These are Sprints.
If sprints are not started you can refer to them as "futureSprints()" in your query.
This means that your final query would look something like this :
project = "your project key" and ( sprint in openSprints() OR sprint in futureSprints() )and status in ("ready for grooming","groomed and ready") and "Epic Link" is EMPTY
It's also important to note that you should consider whether you want to take into consideration your Board filter, as it affects what you see on you backlog.
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.