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

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