How to I search for issues NOT flagged?

Andreas March 31, 2016

This question is in reference to Atlassian Documentation: Flagging an Issue

Ask your question here...

2 answers

7 votes
Mike Drum July 5, 2016

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
0 votes
Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 31, 2016

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)
Dirk Steinkopf p April 6, 2018

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
Like # people like this
Liviu Andrei Torcatoru November 19, 2020

This did not work for me: Flagged is EMPTY

It will still display FLAGGED issues.

Suggest an answer

Log in or Sign up to answer