Hello I want to create a board that brings tickets based on the parent condition: Epic label = PMO.
I've tried the following but is not working:
project = PMO or ISSUE IN issuesInEpics("labels = PMO")
Error: Unable to find JQL function 'issuesInEpics(labels = PMO)'.
Can you help me please? Thank you
Hello @tpedriel
If you are using only native JQL functionality in Jira there is not method to select children of Epics based on a filter to select the Epics. That would require a third party app.
There are several that extend JQL capabilities
https://marketplace.atlassian.com/search?product=jira&query=jql
Some provide functions that would provide the functionality you want.
Are you using any of those apps currently, or are you willing to consider getting an app to satisfy your need?
Hi @tpedriel
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, natively, 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 get all issues whose epic parent has a specific label:
issue in childrenOfEpicsInQuery("labels = PMO")
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @tpedriel,
just to expand on Trudy's answer, this is unfortunately 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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 labels 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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.