This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates a query to retrieve a list of sections.
The querySections()
function builds a query to retrieve a list of sections and returns a SectionsQueryBuilder
object.
The returned object contains the query definition, which is used to run the query using the find()
function.
You can refine the query by chaining SectionsQueryBuilder
functions onto the query. SectionsQueryBuilder
functions enable you to filter, sort, and control the results that querySections()
returns.
querySections()
runs with the following SectionsQueryBuilder
defaults, which you can override:
The following SectionsQueryBuilder
functions are supported for querySections()
. For a full description of the section object, see the object returned for the items
property in SectionsQueryResult
.
PROPERTY | SUPPORTED FILTERS & SORTING |
---|---|
_id | eq() ,ne() ,in() |
_createdDate | eq() ,ne() ,gt() ,ge() ,lt() ,le() |
_updatedDate | eq() ,ne() ,gt() ,ge() ,lt() ,le() |
name | eq() ,ne() ,in() ,startsWith() |
description | eq() ,ne() ,in() ,startsWith() |
image | exists() |
itemIds | exists() |