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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.