I wish to create a filter which will display a single epic of a project and the epic's tasks and subtask. What is the correct equation?
Hi @Mary Irion
I’m Maurício, 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 display an specific epic’s tasks and subtask:
issue in childrenOfIssuesInQueryRecursive("issuekey=ABC-1”)
Please note that we have created a support ticket https://jqlsearchextensions.atlassian.net/servicedesk/customer/portal/2/SEARCH-1105 in our portal, and we request you to sign in to the portal and let us know the username so that we can mark you as the reporter so that you will be able to access the ticket.
Please find the below link to signup to the portal: https://jqlsearchextensions.atlassian.net/servicedesk/customer/portal/2
Looking forward to hearing from you!
Thanks,
Mauricio
You need an app that extends JQL in order to do this. JQL out-of-the-box cannot do a nested query that gets you this result. Check the Marketplace for apps that can do this for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have several apps. Don't need them nested, just need to pull them into the query. I think? one needs to use "parent of" or some such phrase?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Basic JQL can only pull a known parent and the issues that are children of it, something like this:
parentEpic in (JRA-123, JRA-456)
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.