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

Example: Find nodes of @student, or nodes whose age is less than 30
UQLfind().nodes({@student || age < 30}) as n return n{*}
Result|---------------- @student ---------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | S001 | 3 | 27 | [email protected] | | S002 | 4 | 20 | [email protected] | | S003 | 5 | 25 | [email protected] | |--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P002 | 2 | 27 | [email protected] |