<value1> > <value2>Example: Judge whether "2020-01-04" is greater than "2020-04-27"
UQLreturn "2020-01-04" > "2020-04-27"
Result0
Example: Judge whether PI is greater than 3
UQLreturn pi() > 3
Result1
Example: Judge each row of an alias whether it is greater than 2
UQLuncollect [1,2,3,2,2] as a return a > 2
Result0 0 1 0 0
Sample graph: (to be used for the following examples)

Example: Find nodes whose age is greater than 27
UQLfind().nodes({age > 27}) as n return n{*}
Result|--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P001 | 1 | 53 | [email protected] |
Example: Find nodes of @professor, whose age is greater than 27
UQLfind().nodes({@professor.age > 27}) as n return n{*}
Result|--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P001 | 1 | 53 | [email protected] |