I am trying to pull in the results of a query and filter based on the results. I am querying multiple projects for the hierarchy of issues associated.
example:
project in (X, Y, Z) and issueLinkType = "associated with"
project = X AND (issueLinkType = "associated with" OR "Epic Link" is not EMPTY)
I get a list of Initiatives and the Epics "Associated with" the Initiatives.
I need to then take each Initiative and its list of Epics and get all the issues that are part of each Epic
Hi @Excelity ,
With standard JQL you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. Your use case is more dynamic than that.
Standard JQL doesn't easily allow it but the results can be quickly found using our professional indexing service:
After you install the app you can simply search:
issue in childrenOfIssuesInQueryRecursive('project in (X, Y, Z) and issueLinkType = "associated with"')
The query finds all children of your epics and initiatives and even children of their children. You can fine tune the query to meet your requirements.
Make sure to check out the documentation.
I hope this helps!
Daniel
Hello @Excelity ,
Welcome to the Atlassian Community!
I believe this question was already answered in below threads:
However, in order to summarize:
I hope this helps.
Cheers,
Dario
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.