$lte
The$lte operator checks if the first value is less than or equal to the second value.
Input
- An array containing exactly two values to compare
Output
trueif the first value is less than or equal to the second valuefalseotherwise (including when either value is null)
Examples
Less Than
true
Equal Values
true
Greater Than (Returns False)
false
Field Value Comparison
true if the price field is less than or equal to 100, otherwise false
