not
not(
expression):NotNode
Defined in: src/query/expression.ts:362
The complement of an expression, evaluated against the set of live entities — unlike !=, it
matches entities that never set the attribute at all.
Parameters
Section titled “Parameters”expression
Section titled “expression”Returns
Section titled “Returns”Example
Section titled “Example”not(exists("closedAt")) // NOT EXISTS(closedAt)not(and(eq("a", 1), eq("b", 2))) // NOT (a = i32(1) AND b = i32(2))