Hi,
Is there a way to create JQL presenting Tasks which meet filter criteria and all its sub-task?
I would like to create a filter as follows if possible:
The easy part is obvious:
Show me Tasks with "Custom field 1" = A
and the tricky part:
and all it's sub-tasks (but the problem is that there is no "Custom field 1" for sub-tasks)
Sam
Hello @Sam
This should help
issueFunction in subtasksOf("project = test AND issuetype = Task AND resolution in (Unresolved, Done)") and Show me Tasks with "Custom field 1" = A
Parameters dont have to be project = xx etc. the catch is that issueFunction requires 3 parameters
The first part should show you the matching subtasks
issueFunction in subtasksOf("project = test AND issuetype = Task AND resolution in (Unresolved, Done)")
And the second part tasks
Show me Tasks with "Custom field 1" = A
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.