Sciptrunner version: 7.11
JIRA Server: 9.6.0
One of my users is trying to set up a filter to be used on a dashboard where they need to show the subtasks in one status but only if the second subtask is closed or resolved. Both subtasks would be under the same parent.
So in this instance the filter would return SubTask1 as it is open and due to SubTask2 being closed
In this instance it would not return SubTask1 since SubTask2 is still open.
I have tried variations of subtasksOF and parentsOF... but can not figure out how to use SubTask2 as the condition to display SubTask1.
Any help would be appreciated and thanks in advance....
I have used scriptrunner for server in the past and haven't used it recently. Can you check if the following query work?
issueFunction in parentsOf("project = ABC and issuetype=Sub-task and status = open") and issueFunction in parentsOf("project = ABC and issuetype=Sub-task and status = Closed")
Thanks,
Ojase
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.