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 guys,
I´ve seem many many questions and discussions about this question, but not a simple answer that does not demand an external plugin!
how could I simple filter my itens (task, histories, subtasks) by just the epic! Is that so hard!?
Hello @Fabio Belotto
What are the end results you are trying to achieve?
The "View all issues" screen in Jira allows you to create a filter to get a list of issues. If you want to get all the child issues of a specific Epic you can do that with:
Parent = issue key for Epic
That will not give you the subtasks that are under the child issues of the Epic.
Unfortunately there is not a Jira-native way to nest filters so that you could, for instance, do something like
Parent = issue key of Epic or Parent in (Parent = issue key of Epic)
And there is no "subtasksOf" function that accepts a filter as input.
The bottom line is getting both child issues of an Epic and the subtasks of those child issues is not possible with native Jira search functionality.
That's the question.
I would like to simply filter all my board by a specific epic.
With available options, I don't get to the subtasks. Jql is quite not useful by not accepting a simple recursive selection (given the options that I would need to use... )
And using external plugins is always a compatibility issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good news! I was wrong!
I found a post that I actually answered from 2020, but I got the answer from somebody else.
If you use a filter like this you will get the child issues of the Epic and the subtasks of the child, when all issues are in Company Managed projects.
Parent=issue key of Epic or (issuetype in subTaskIssueTypes() and parentEpic=issue key of Epic )
The above does not work for Team Managed projects, unfortunately.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interesting option.
I currently use an team managed instance because company managed seems a little bit confusing to set up, but I may try.
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.