When you execute a reference query with the queryReferenced()
function, it returns a Promise that resolves to a WixDataQueryReferencedResult
object. This object contains the items that match the reference query and
functions for paging through the query results.
Note: The WixDataQueryReferencedResult
object's properties and functions are not supported for Single Item Collections.
let items = results.items;
/*
* [
* {
* "_id": "1234",
* "_owner": "f45jf8d2-grkj-2opd-4ovk-9rfj4wo5tvj3",
* "_createdDate": "2017-05-29T08:35:52.344Z",
* "_updatedDate": "2017-05-29T08:35:52.344Z",
* "first_name": "Jane",
* "last_name": "Doe"
* },
* {
* "_id": "5678",
* "_owner": "f45jf8d2-grkj-2opd-4ovk-9rfj4wo5tvj3",
* "_createdDate": "2017-05-25T12:48:56.572Z",
* "_updatedDate": "2017-05-29T07:30:15.869Z",
* "first_name": "John",
* "last_name": "Doe"
* }
* ]
*/
Returns the total number of items that match the reference query.
The totalCount
returns the total number of items that match the reference query,
not just the number of items in the current page.
let resultCount = results.totalCount; // 150
Indicates if the reference query has more results.
function hasNext(): boolean;
let hasNext = results.hasNext(); // true
Indicates if the reference query has previous results.
function hasPrev(): boolean;
let hasPrev = results.hasPrev(); // false