Hi team,
Please help )
I can't find or build the query that would list all issues that are related to all issues that are part of epic.
1. First part: list tickets in epic = `parent = "JIRA-1"`
assuming we have output: JIRA-2, JIRA-3, JIRA-4
2. Second part: list tickets related to current as = `issue in linkedIssues("JIRA-2", "relates to")`
I can't figure out how to combine two of them and output of first pass as the first argument to second....
Thanks in advance
You cannot do that in one JQL query with out-of-the-box features.
Some alternatives are:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sergii Shevchuk ,
With standard JQL, you can only get a list of issues with links and export them to Excel for further processing. This works if you want to do a one-off analysis.
Standard JQL doesn't easily allow it, but you can find the results quickly using our professional indexing service JQL Search Extensions
After you install the app, you can simply search:
issue in linkedIssuesOfQuery("parent=JIRA-1", "relates to")
Check out the documentation to see more examples.
I hope this helps!
Daniel
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.