Hello,
we are currently working on a reporting dashboard to audit all projects we have in Jira. For this specific filter we want to know which epics are in status "backlog" or "open" but have linked issues which are "in progress"
I tried a few filters but the problem is that i had to give the query a specific epic link. Since we have hundreds of epics in dozens of projects i cant name them all, so I hope there is a solution with just one filter for all projects...
Thanks a lot for help
Hi @Jan Eißing
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
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: i.e., any epics in "backlog" or "open", plus any issues that are "in progress". (Don't have worry about any parent/child relationships; JXL will sort this for you.). You'd then enable the default hierarchy (that's just two clicks) and hide any empty epics (that's another two clicks). This is how this looks in action:
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.
Hi @Jan Eißing
I’m Charlotte, 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 find all epics that are in status backlog but their children are in progress:
issue in epicsOfChildrenInQuery("status='In Progress'") and status=Backlog
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Charlotte
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.