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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Trying to create a filter for all child issues of Epics in my Jira Project without using scriptrunner but the advance filter only.
example:
issuekey = EEEP-963 OR issuekey in childIssuesOf(EEEP-963) OR issuekey = EEEP-992 OR issuekey in childIssuesOf(EEEP-992) AND issuetype in ("Portfolio Epic", Capability, Epic, Story) ORDER BY issuetype ASC
this gives me Exactly what I need for my report – the Epic down to the lowest children (sub-task) if it exist in any story.
However, that is limited to manually entering known issuekey. I want to be able to return all Epic, and their respective childIssues. So if I have 100 Epics I should also get children of each epic under them.
Any suggestion or solution to this?
Hello,
You would need a plugin for it. For example, you could use JQL Search Extensions for Jira.
Your JQL query would look like this:
issue in allIssuesInEpic(
"your JQL query"
)
You can find more info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, the update from my IT team is that they wont want to buy another add on or extenssion. for this purpose. therefore i will still appreciate any solution on how to use the jira filter to return same result.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you don't want to use a plug-in and if Initiative issue type is enabled, you can put all the epics under an initiative and use "issuekey in childIssueOf(InitiativeKey)" to get all epics, tasks, and sub-tasks linked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for posting a solution that does not involve the use of a plug-in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This only returns the issues for a KNOWN initiative, does it extend to finding all child issues of all initiatives (I can't seem to find a way to nest an initiative search)
I'd like something like
issuekey in childIssueOf(project=MyProj and issuetype=initiative)
but it doesn't seem to exist. Any clues ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's a good question. You're right, for what I wrote to work you need to manually put known Epics under a known Initiative. I found a couple of solutions (not sure if they are 100% solutions to your question but maybe they might help you find a better solution!).
1. Found issue in parent(JqlQuery).This function returns subtasks of given JqlQuery. Found it on https://www.j-tricks.com/jqlt-subtask-functions.html. I think this is also a plug in so I couldn't find this filter in my company's Jira. Give it a try:
project = ABC AND issue in parent("issuetype = Initiative") (change Initiative to Epic if you'd like to)
2. issueFunction in issuesInEpics("project =ABC") - This will return all type of issues of Epics in that project. Found it on https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html. Scriptrunner is a plug in.
3. If you don't know the issue keys of the Epics you want the tasks and subtasks of, you could find them by using the following:
project = ABC AND issueFunction in epicsOf("resolution = unresolved")
In this case, they all need to satisfy a condition. In this example that condition is the project and the resolution.
After finding the key of these issues you could use them to get all of the tasks and subtasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
solved >
The following gives you all issuetypes linked to any issues picked up by a filter
| issue in linkedIssuesFromFilter(30785)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In case anyone else stumbles across this, who cannot access the more obscure JQL calls. I have an answer that doesn't involve a plug in:
project = ABC AND issuekey = XYZ-1234 OR issuekey in portfolioChildIssuesOf(XYZ-1234)
This does not give a tree structure, but will list all work items.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I also failed to find a solution not requiring an add-on. As I see this a logical extension of JQL, I filed a feature suggestion:
https://jira.atlassian.com/browse/JRASERVER-70710
I would appreciate votes / feedback.
Thanks,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
upvoted - it's super frustrating this is not available, seems basic to the tenets of most Agile implementations
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
you can try our add-on Epic Finder which has many useful functions to find epics and their issues that fulfill different conditions. Please have a look here for more details.
For some examples how to use this add-on, please go to Ultimate Guide.
Regards,
Lime Trees Support Team
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, the update from my IT team is that they wont want to buy another add on or extenssion. for this purpose. therefore i will still appreciate any solution on how to use the jira filter to return same result
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.