The following table lists the operators supported in API development and their meanings.
|
Operator |
Description |
|
= |
Returns true if the values of two operands are equal. |
|
> |
Returns true if the left operand is greater than the right operand. |
|
>= |
Returns true if the left operand is greater than or equal to the right operand. |
|
< |
Returns true if the left operand is less than the right operand. |
|
<= |
Returns true if the left operand is less than or equal to the right operand. |
|
!= |
Returns true if the left operand is not equal to the right operand. |
|
in |
Compares a value against a specified list of values. |
|
LIKE |
Performs a fuzzy match by ignoring prefixes and suffixes (%keyword%). |
|
Start With |
Performs a left match by ignoring suffixes (keyword%). |
|
End With |
Performs a right match by ignoring prefixes (%keyword). |
|
Legacy_Like |
Requires you to manually enter wildcard characters for fuzzy matching in request parameters. Applicable to the original LIKE operator configuration. |