<exp>| <exp> | Result |
|---|---|
| 0 | 1 |
| 1 | 0 |
Sample graph: (to be used for the following examples)

Example: Find nodes of @student, whose age is not 27
UQLfind().nodes({@student && !(age==27)}) as n return n{*}
Result|---------------- @student ---------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | S002 | 4 | 20 | [email protected] | | S003 | 5 | 25 | [email protected] |
Analysis: This filter cannot be composed as {!(@student.age == 27)}, which is equivalent to {!@student || !(age == 27)} and outputs:
Result|--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P001 | 1 | 53 | [email protected] | | P002 | 2 | 27 | [email protected] | |---------------- @student ---------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | S002 | 4 | 20 | [email protected] | | S003 | 5 | 25 | [email protected] |