The answer may well be "don't do that" but it seems like a legitimate use case to me.
We have an issue type ("Job") which allows subtasks ("Tasks"), but which do not always have subtasks.
We set time estimates on the subtasks, but if there aren't any subtasks (it is a straightforward job which doesn't need breaking up into components) we just set a time estimate on the Job itself.
I would like to query for all issues which should have a time estimate but don't, i.e. "All Jobs and Tasks except Jobs which have subtasks" or "All Tasks and also Jobs which don't have subtasks". I'm trying to avoid creating a separate issue type for the "simple job"s
My JQL looks like this currently:
project = MyProject and issuetype in ("Job", "Task" ) and status not in (resolved, closed) and fixVersion in unreleasedVersions() and timeestimate is empty
Great answer, but not for this question
By the way, it helped me on another situation...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great answer! First click, first thing that worked for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL Tricks plugins has a hasSubtasks method which you can use in this query. It is a commercial plugin, btw!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, I saw that. This isn't a problem which is worth any money to me, unfortunately.
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.