Thanks
Hi @PLohitha S,
Welcome to Atlassian Community!
JQL out-of-the-box cannot do a nested query that would allow you to get all epics and their associated stories, unless you specify each issue key for the epic in the query. You need an app that extends JQL in order to do a nested filter. There are multiple apps in the Marketplace that can do this, I have used JQL Tricks and Enhanced Search in the past to do it.
Hi @PLohitha S
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all epics and stories that are children of Initiatives:
issue in childrenOfIssuesInQueryRecursive("type=Initiative")
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Charlotte
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @PLohitha S
Welcome to the Atlassian community.
Are you using a Premium subscription? Did you set up the Issue Hierarchy and use Advanced Roadmaps to add Epics as child issues of Initiatives?
If so, there are some additional JQL fields available to you, as described here:
You can use this to get the child issues directly below the Initiative, and the child issues under those children.
issuekey in portfolioChildIssuesOf("initiative issue key")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @PLohitha S ~ I believe you can use the function, issue in (childIssuesOf(<yourinitiativeissuekeyhere>))
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.