Search
Search capabilities are commonly supported by all objects in the service unless otherwise specified. You can refine the results returned from a query using keywords and search filters to form search criteria. Object-specific keywords are described in the object.
Search Operators
The Incognito Query Language (IQL) operator or symbol are valid filters. You can, optionally, specify multiple arguments. Concatenate arguments using “&&”.
IQL Operator | IQL Symbol | Description |
---|---|---|
EQ | = | Returns entries containing attribute values that match the specified value. Not for use with time queries. |
GT | > | Returns entries containing attributes that are greater than the specified value. |
GTEQ | >= | Returns entries containing attributes that are greater than or equal to the specified value. |
LT | < | Returns entries containing attributes that are less than the specified value. |
LTEQ | <= | Returns entries containing attributes that are less than or equal to the specified value. |
AND | && | All specified filters must be true for the statement to be true. |
OR | || | At least one specified filter must be true for the statement to be true. |
NOT | ! | The specified statement must not be true for the statement to be true. Only one filter is affected by the NOT operator. |
IN | n/a | Returns entries containing at least one value specified
in a list. For performance, do not use more than five values in your
list. Format: |
ISNULL | n/a | Returns entries when the specified property is NULL. |
ISNOTNULL | n/a | Returns entries when the specified property is NOT NULL. |
Common Query Parameters
Name | Data Format | Description |
---|---|---|
ascending | true (default)/false | Return results in ascending order (true) or descending order (false). Valid only when the “orderBy” parameter is specified. |
created | string (time, ISO 8601) | Date the object was created in the service. |
lastModified | string (time, ISO 8601) | Date the object was last modified in the service. |
orderBy | string | Order search results by specified object keyword(s). Used
with the ascending parameter. |
pageIndex | long integer (0=first page) | Page index. Can be specified with |
pageSize | long integer | Maximum number of records to display on the page. This
value cannot be modified when fetching subsequent pages with the
Default value is the maximum allowable page size set by the service. |