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.