greaterThan.php
Table of Contents
Functions
- greaterThan() : string
- Returns an AQL expression that checks if the left operand is greater than the right operand.
Functions
greaterThan()
Returns an AQL expression that checks if the left operand is greater than the right operand.
greaterThan(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB > comparison operator.
Example:
3 > 2returnstrue2 > 3returnsfalse
Parameters
- $leftOperand : mixed
-
The left-hand value or expression.
- $rightOperand : mixed
-
The right-hand value or expression to compare against.
Tags
Return values
string —The AQL predicate string.