Hi all,
I want to find all Open tasks (epics, stories, etc.) where all subtasks are Closed.
The problem is that "issueFunction in parentsOf()" gets back all tasks that have at least one closed subtask but not all subtasks are closed.
Does anybody have an idea how to do that?
hi there,
I was able to catch the parent of ALL closed subtasks with this addition to my JQL:
AND not issueFunction in parentsOf("project = xxx AND resolution is EMPTY")
but strangely enough it didnt work with
AND not issueFunction in parentsOf("project = xxx AND status = Closed")
There may be a simpler way of doing it, but this should work :
issue in parentIssuesFromQuery("issue in subtaskIssuesFromQuery('status = open AND issueFunction in hasSubtasks()') and status = Closed")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.