| Operator | Description | Example |
Equals to
[eq] and =
| Property value is equal to the specified operator value. | language=en-US
system.type[eq]=article
system.collection[eq]=default
|
Doesn't equal to
[neq]
| Property value is not equal to the specified operator value. | system.type[neq]=article
system.collection[neq]=default
|
Matches one from the list
[in]
| Property value is equal to one of the values in the specified list of values. | system.type[in]=article,post
system.collection[in]=global,campaigns
|
Matches none from the list
[nin]
| Property value is not equal to any of the values in the specified list of values. | system.type[nin]=home,page
system.collection[nin]=global,campaigns
|