I have a filter that pulls all the Features with a certain condition (label applied); how do I then create a JQL that shows me all the stories linked to the features under this filter?
(Enterprise Jira)
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, model your issue hierarchy (if you're using the default hierarchy, that's just one click), and then use JXL filtering capabilities to narrow down to the issues that you care about:
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.
Hello @Katrina Atkinson
There is not a method to do that with only native Jira JQL functionality.
The portfolioChildIssuesOf() enables you to do that sort of query for one explicitly specified Feature at a time. You can't provide a filter as the input for the Features in that case.
What do you want to do with the results?
A workaround using an Automation Rule could be possible. A Scheduled trigger could use the JQL you have to select the features, and then you can use the portfolioChildIssuesOf() repeatedly to get the child issues of each feature. The results can be sent to users via email.
Otherwise, are you willing to consider a third party app to achieve your requirement?
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.