Our company has a large initiative that has 17 parent epics. We'd like to see all the work items that are in each epic, without including the epics. Is there a way to do this?
Hello @EricC
Welcome to the Atlassian community.
Yes, there is a way to do that!
Referring to this document:
...you can use a JQL like this:
issuekey in portfolioChildIssuesOf("INIT-001") AND issueType != Epic
...where INT-001 is the issue key for your initiative. If the children of the Epics might have sub-tasks that you want to exclude also, you can modify the JQL thus:
issuekey in portfolioChildIssuesOf("INIT-001") AND issueType not in (Epic, subTaskIssueTypes())
I'm glad I could help you!
If my response helped you solve your problem, please consider clicking on the Accept Answer button to mark your question as Solved. That helps others searching this community find posts that have validated solutions.
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.