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.
Good morning,
I would like to create a JQL in order to search all the sub tasks related to a list of tasks.
The tasks are with a specific component assigned and I have to filter only for those tasks in open status.
The results have to be the list of all the sub-tasks connected to the tasks.
I hope I was clear enough.
Thanks
Amedeo
You cannot do this with a single query, unfortunately.
You would need one query, something like this, to get the tasks:
component = "whatever" and status = "In progress"
And then a second query to get their sub-tasks. T
his would require using sub-queries which aren't natively supported by Jira.
But there are apps that support sub-queries, for example this one: https://marketplace.atlassian.com/apps/1214791/jql-search-extensions-for-jira-the-jql-extensions?hosting=server&tab=overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.