Basic comparison expression for filtering on a single property.
Compares a property's value against a constant value using comparison operators
like equals, greater than, less than, or text matching operators like LIKE and BEGINS.
This is the most common expression type, used for simple filters like "status = 'active'"
or "value > 10000". Can be combined with AndOrExpression to build complex filters.
Basic comparison expression for filtering on a single property.
Compares a property's value against a constant value using comparison operators like equals, greater than, less than, or text matching operators like LIKE and BEGINS.
This is the most common expression type, used for simple filters like "status = 'active'" or "value > 10000". Can be combined with AndOrExpression to build complex filters.
Example: Equality check
Example: Numeric comparison
Example: Text contains a fragment, pass it on its own
Example: Starts with text
Example: Boolean check
Example: Null check
See