Advanced Operators
CLQL Advanced Operators
CLQL supports basic operators (=
, !=
, <
, <=
, >
, >=
, <>
, in
, not
, not in
).
Below are some advanced operators:
matches
matches
Use a regex-like pattern on a string property.
where
where
Filter search results conditionally.
Must start on a new line
Must be preceded by
|
exists
exists
Check if a value exists for a specified field.
sort by
sort by
Order search results by a specified field.
Must start on a new line
Must be preceded by
|
Default order is
desc
(descending)
Last updated