<value1> != <value2>Example: Judge whether "Ultipa" does not equal "U1tipa"
UQLreturn "Ultipa" != "U1tipa"
Result1
Example: Judge whether PI does not equal 3
UQLreturn pi() != 3
Result1
Example: Judge each row of an alias whether it does not equal 2
UQLuncollect [1,2,3,2,2] as a return a != 2
Result1 0 1 0 0
Sample graph: (to be used for the following examples)

Example: Find nodes whose age is not 27
UQLfind().nodes({age != 27}) as n return n{*}
Result|--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P001 | 1 | 53 | [email protected] | |---------------- @student ---------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | S002 | 4 | 20 | [email protected] | | S003 | 5 | 25 | [email protected] |
Example: Find nodes of @professor, whose age is not 27
UQLfind().nodes({@professor.age != 27}) as n return n{*}
Result|--------------- @professor --------------| | _id | _uuid | age | email | |-------|-------|-------|-----------------| | P001 | 1 | 53 | [email protected] |