$gt
The$gt operator checks if the first value is greater than the second value.
Input
- An array containing exactly two values to compare
Output
trueif the first value is greater than the second valuefalseotherwise (including when either value is null)
Examples
Basic Comparison
true
False Comparison
false
Field Value Comparison
true if the age field is greater than 18, otherwise false
String Comparison
true (lexicographic comparison)
