not
To negate any condition, use
not
.
p is Person
not p.domicile = ch
This simply gets you the opposite result from using
p.domicile = ch
. If the person in the case does not live in Switzerland, this condition evaluates as true.Last modified 1yr ago