This question is in reference to Atlassian Documentation: Flagging an Issue
If you're looking for something that's not flagged at all, just negating it won't do the trick. You will want to check for Flagged being 'empty':
Flagged is EMPTY
To search for issues NOT flagged, you can simply negate the advanced search query, i.e. use either an explicit negation NOT
not (Flagged = Impediment)
or the shorthand notation for inequality
Flagged != Impediment
or, to be more future proof if more flag values get introduced, use NOT IN
Flagged not in (Impediment)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For me, all these 3 variant gave an empty result.
This one has helped me (as in the other answer from Mike Drum):
Flagged is EMPTY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This did not work for me: Flagged is EMPTY
It will still display FLAGGED issues.
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.