I've tried various JQL to get only issues without a Deferred label and none of them seem to work. Am I doing something incorrectly?
Issue I'm trying to get returned:
All the below queries returned no results.
Instead of
labels != Deferred
labels not in (Deferred, HighlyVisible)
use
# Select ticket if missing the named label.
NOT (labels = Deferred)
# Select ticket if missing ANY of the named labels.
NOT (labels = Deferred AND labels = HighlyVisible)
# Select ticket only if missing ALL of the named labels.
NOT (labels in (Deferred, HighlyVisible))
These avoid having to check whether labels IS EMPTY.
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.