Hi JIRA community .
I want to filter all subtasks which belong to a specific epic.
I put like this
parent =xxx ORDER BY created DESC
But they only gave me stories that are in the epic.
How can I get the subtasks that are in these stories?
Hey @光野 かおる
Good day!
Since you're on a premium plan, you may use the JQL function portfolioChildIssuesOf()
The JQL syntax is:
key in portfolioChildIssuesOf("Epic-Key").
This will list all the child items and subtasks under this Epic.
Thanks!
Hi @光野 かおる ,
On top of what Karan said, you can simply add "type = Sub-task" part of the clause, so:
key in portfolioChildIssuesOf("Epic-Key") and type = Sub-task
or, you could get the same thing with this:
parentEpic = "Epic-Key" and type = Sub-task
This should get you all the sub-tasks from the specific Epic.
Cheers,
Tobi
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.