Operators Supported by API Development
This topic explains the operators used in API development.
Operator | Description |
= | Checks whether the values of two operands are equal. If they are equal, the condition is true. |
> | Checks whether the value of the left operand is greater than the value of the right operand. If it is, the condition is true. |
>= | Checks whether the value of the left operand is greater than or equal to the value of the right operand. If it is, the condition is true. |
< | Checks whether the value of the left operand is less than the value of the right operand. If it is, the condition is true. |
<= | Checks whether the value of the left operand is less than or equal to the value of the right operand. If it is, the condition is true. |
!= | Checks whether the value of the left operand is not equal to the value of the right operand. If it is, the condition is true. |
in | The operator is used to compare a value with a series of specified list values. |
LIKE | Indicates character matching by ignoring prefixes and suffixes, which is fuzzy match (%keyword%). |
Start With | Indicates character matching by ignoring suffixes, which is left match (keyword%). |
End With | Indicates character matching by ignoring prefixes, which is right match (%keyword). |
Legacy_Like | You need to manually enter wildcard characters for fuzzy match when specifying request parameters. It is applicable to the original LIKE operator configuration. |