Comparison Operators with nested support
Optional
5 between [min, max]
5 > 4
5 >= 4
id > 4
id >= 4
id < 4
id <= 4
2 in [1, 2, 3]
5 < 4
5 <= 4
5 not in [1, 2, 3]
Comparison Operators with nested support