I have a query that is something like this:
project in (X, Y) AND component in (A,B,C,...) AND labels not in ("stuff")
This filter returns less than expected. It filters the things with label "stuff", but also filters things with label = "EMPTY"
We fixed by changing the label stuff to: (labels != "stuff" OR labels is EMPTY)
However, it doesn't make sense to me that things without a label need to be specifically selected since "EMPTY" should not equate to "not stuff".
Am I missing something or is this a bug (or a feature)?