Filter operators
| Operator | Description |
|---|---|
| and |
Matches if all of the filters in the list match "values" a list of filters. Example:
|
| ci_like |
Matches if the left filter is equivalent to the right part (case insensitive) "left" a filter "right" a filter. Example:
|
| cs_like |
Matches if the left filter is equivalent to the right part (case sensitive) "left" a filter "right" a filter. Example:
|
| defined |
Matches if the given filter value in parameter is defined "value" filter. Example:
|
| in |
Matches if the evaluation of the left part is equivalent to one of the element of the right part "left" a filter "right" a list of filters. Example:
|
| not |
Matches if the given filter as parameter do not match "value" a filter. Example:
|
| or |
Matches if any of the filters in the list match "values" a list of filters. Example:
|