i'm looking to find a way to write a JQL query that will find any issue that is missing a particular subtask type.
For my team's process, every issue should have two subtasks (design subtask and evaluation subtask). Occasionally, we forget to create these subtasks (namely the evaluation subtask).
How can i write a query that will find issues that are missing an evaluation subtask?
i actually think i may have answered my own question.
project = PROJ AND status not in (closed, "On Hold") AND NOT (issueFunction in parentsOf ("issueType = evaluation”))
this appears to be working but if anybody has any tips or suggestions, i'd appreciate it.
That indeed does work. It would be worth noting though that this requires the ScriptRunner plugin, as parentsOf() is not a native JIRA function.
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.