...
Beginning with version 9.4, the following example requests only objects that are no folders and that do not contain a document file.
...
Code Block |
---|
{
"term": "txt_sysemail_systo:irina@qs.optimal-systems.de OR txt_sysemail_syscc:irina@qs.optimal-systems.de",
"options":
{
"expertmode": true
}
} |
Example: Searching with "not this value" in fields of type string, number, and date
Instead of the operator "eq" use "not" to find all objects not containing the value "freelancer" in a string field. Wildcards are supported.
Code Block |
---|
"filters": {
"employee.class-string": {
"o": "not", // operator for range
"v1": "freelancer" // none stands for no content (document file)
}
} |
Example: Searching with "notin" for catalog fields
Instead of the operator "in" use "notin" to find all objects not containing the value "freelancer" in a catalog field. Wildcards are supported.
Code Block |
---|
"filters": {
"employee.class-catalog": {
"o": "notin", // operator for range
"v1": "freelancer" // none stands for no content (document file)
}
} |
Endpoint Method Overview for Aggregations
...