When you execute a query with the find()
function, it returns a Promise that resolves to a ExtendedFieldsQueryResult
object.
This object contains the items that match the query, information about the
query itself, and functions for paging through the query results.
Returns the items that match the query.
The current page of items retrieved by the query.
List of extended fields.
Note: When no items match the query, the items array is empty.
To paginate your query results, use the ExtendedFieldsQueryResult
pagination properties and functions.
Returns the ExtendedFieldsQueryBuilder
object used to get the current results.
Use the query
property to create and run a new query
by chaining additional ExtendedFieldsQueryBuilder
functions to it.
You can filter only on properties that have not not already been used in the previous query.
let resultQuery = results.query;