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.
Manage Confluence like never before! This new learning path teaches you how to manage content, users, and permissions while optimizing user experience. Built for admins at all levels who want to confidently lead and unlock more innovative collaboration.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.