Supported search operations Logical comparision operators can only be used with numbers or dates IN, LIKE, startsWith, endsWith, CONTAINS can only be used with strings or text
| name | data type | description |
|---|---|---|
| attributeName | string | |
| attributeValue | string | |
| condition | Condition | |
| criterion | array of FilterCriteria | |
| operator | Operator |
Example
{
"attributeName" : "...",
"attributeValue" : "...",
"condition" : "AND",
"criterion" : [ {
"attributeName" : "...",
"attributeValue" : "...",
"condition" : "AND",
"criterion" : [ { }, { } ],
"operator" : "GTE"
}, {
"attributeName" : "...",
"attributeValue" : "...",
"condition" : "AND",
"criterion" : [ { }, { } ],
"operator" : "CONTAINS_ANY"
} ],
"operator" : "ENDS_WITH"
}