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.
Or All the Tasks of an EPIC? I did not find the way to express in JQL the keywords to express a link as a child of another ticket.
Hi Laurance,
You can retrive subtask of a fixed list of parent by doing the following:
parent IN (PARENT-1, PARENT-2, PARENT-3)
You can also do the same within epics using the following:
"Epic Link" IN (EPIC-1, EPIC-2, EPIC-3)
However, if you need a dynamic list of items, that is, for example all subtask of not "Done" issues you need a third-party app, ie using JQL Booster Pack (FREE) you could type the following:
issue IN subtasksOf("status != Done")
You can also might find interesing the following jql functions provided by this app.
Kind Regards