Query constraints
Last updated
Was this helpful?
Last updated
Was this helpful?
In API operations which return the list of objects, the API must provide a way to apply constraints: filter, order, etc.
Support basic request syntax in the API.
Supported constraints:
order (string) - order by field
limit (int) - limit number of records
skip (int) skip number of records
include (string) - include referenced objects and/or containers
keys (string) - select only some field(s)
where (object) - filter records
the include
parameter expects comma-separated list, where each entry is either:
the name of the pointer field
the name of the cotainer
the names can be nested, e.g. include=department.group,article_prices
Rows are filtered by component of the Query Processor.
Parse API :