We use Jira Data Center. I would like to get the list of child issues under a Theme.
We have 2 issues of Issue type Theme - say TH-1 andTH-2
Our hierarchy goes like Theme -> Initiative -> Epic
I would like to get the list of Initiatives and Epics that are child issues of TH-1 and TH-2. Is there a way I could get this using JQL?
Additional Info - We have Advanced Roadmaps and Script Runner
TIA
Hello @Ganeshkumar Meenakshisundaram Welcome to the community!
issue in childIssuesOf("TH-1") AND issuetype in (Initiative, Epic)
This should get the Initiatives linked to TH-1 and Epics linked to those Initiatives.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ganeshkumar Meenakshisundaram
With standard JQL query it is not possible to get what you want. You can try to use "order by" but still I'm not sure that you will get right order.
Regards,
Seba
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.