Hi,
As the subject suggests, I want to exclude any subtasks from my JQL filter where said subtasks are part of a parent task whos summary contains a certain string.
As you're on Jira Cloud, the correct answer is to get an app that provides JQL extensions you're looking for.
With standard JQL, you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. If your use case is more dynamic than that, look beyond standard Jira.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service JQL Search Extensions
This query will display subtasks that are part of a parent task whose summary contains a certain string.
issue in subtasksOfParentsInQuery("summary ~ test”)
Check out the documentation for more examples.
I hope this helps!
Maurício
You cannot do that with out-of-the-box JQL, as it cannot perform such nested queries or joins. For possible work-arounds:
Kind regards,
Bill
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.