LC1983
LC1983

Reputation: 238

How to search on Jira for all subtasks where parents meet criteria

I have a filter on Jira to display only tasks with a certain label. However a lot of these tasks have subtasks, is it possible to display the all of the subtasks from parents with the label?

Upvotes: 1

Views: 1978

Answers (1)

amuratova
amuratova

Reputation: 451

You'll have to get Scriptrunner for Jira add-on to achieve this result.

If you are on Jira Server, the query would be:

issueFunction in subtasksOf("label = xxx")

If you are on Jira Cloud, run the same query in ScriptRunner Enhanced Search window.

Upvotes: 1

Related Questions