You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello, I am able to filter all type as "tasks" which belong to a "fixversion" but the "fixversion" information are sometimes updated only at EPIC level.
Could someone suggest JQL to filter the type "Tasks" under "EPICs belonging to a specific fixversion"
If I get a solution for this then I add "summary ~ Sign-off" to get my desired result.
I have a Sign-off task for every EPIC and want to filter just the tasks with summary "Sign-off" from EPICs that are in specific "fixversion". Thanks
project = "ABC" AND issuetype = Epic AND fixVersion in ("1234", "1235") AND Status in (DONE, Releasing) AND issueFunction in epicsOf("issuetype in (Task) AND project = \"XYZ\" AND summary ~ Sign-off AND status not in (Done, Abandoned)")
The above query worked for me, EPICs were in project ABC and Tasks for the EPICs were created in Project XYZ, I wanted to filter the EPICs with Tasks having "Sign-off" in Summary
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
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.
Thank you @Hannes Obweger - JXL for Jira for the details you provided.
I tried "one-off thing" approach you mentioned as I had to get something working this week.
Just a question, in the query below is there a possibility to filter just the EPICs that are in status "Done", for example
My query : "Epic Link" in (KEY-1, KEY-2,...) AND type = Task AND summary ~ Sign-off
What I want to achieve is filter just tasks linked with EPICs that are in particular Status.
We are reviewing the apps that you suggested in Marketplace, interested in "Issue Hierarchy Reports". Will post in the form if any help needed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried "one-off thing" approach you mentioned as I had to get something working this week.
Just a question, in the query below is there a possibility to filter just the EPICs that are in status "Done", for example
For the one-off approach, you'd have to do this in the first query, where you retrieve the list of relevant epics (i.e., the "KEY-1, KEY-2" part of your second query). So in other words:
We are reviewing the apps that you suggested in Marketplace
Cool. Make sure you also give JXL a try. You'll love it, and your use case is trivial to solve with it.
Best,
Hannes
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.