i'm trying to write a query to pull back all issues that don't a a particular subtask type. my project has a subtask type called "Evaluation." I want to find all issues that don't have an Evaluation subtask.
With JQL Tricks plugin (commercial), you can do it like this:
issue not in hasSubtasks("Evaluation") and project = XYZ
JIRA doesn't have the ability to slice data that way. I only know how to do this using the add-on Script Runner, using a purpose-built JQL function. I am not sure about this anymore, since that add-on doesn't appear free now.
issueFunction in parentsOf("issuetype != Sub-Task")
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.