Hi all,
I have ~100 epics that have Custom Field = X, or Y or Z. I created a simple query that is listing all those epics that I want to see, there is no problem with that, but now I want to see all child issues of those epics. How can I do that?
I searched through multiple threads here but nothing was helpful :(
EDIT: Forgot to mention - Custom Field is a field that is present only on the Epic level, it is a dropdown with 3 possible choices.
I'm using JIRA cloud, I do not have any extensions installed.
Epics are spread through multiple Projects with various assignees, reporters etc.
Hi @Robert Rzad
welcome to the community!
Unfortunately, this is trickier than one might think; as a hierarchical query, it would really require some kind of "join" or "subquery", which isn't available in plain Jira/JQL.
A few directions forward:
If you want to run your search dynamically, without manually "stitching" two queries together, you'll need extra tooling:
Hope this helps,
Best,
Hannes
... and just to expand on the last point, this is how this would look in the app that my team and I are working on: JXL for Jira. Put simply, you'd create a sheet with all issues that are potentially relevant to you, enable the default issue hierarchy (that's just one click), and then use JXL filtering capabilities to narrow down to the issues that you care about:
(I'm using the epic status here, but it would work the same way with any other field.)
Once you have your list of issues, you can work on these directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
Any questions just let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks!
You're right that it's not as easy as it sounds. Shame I might need some plugins for that but appreciate it nevertheless.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, it is possible with "Scriptrunner enhanced search" App installed and use the function issueFunction in childrenOf("filter= 1234"), where Filter 1234 is the list of your Epics.
Unfortunately in cloud is not possible without this App, since the standard filter does not support "issuefunction" search.
regards
Laura
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Robert Rzad
Welcome to the Community!
This JQL may help you to modify your query to include the child issues:
"Epic Link" in (epic_key_1, epic_key_2, epic_key_3, ...) AND "Custom Field" in (X, Y, Z)
Replace epic_key_1, epic_key_2, epic_key_3, ...
with the actual keys of the epics you're interested in. If you already have a query that retrieves the epics, you can combine it with this to list the child issues.
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.