Introduction

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.

Did this help?

items


itemsArray<object>Read-only

Returns the items that match the reference query.

The current page of items retrieved by the reference query.

The page size is 50 items. Navigate through pages of items with the prev() and next() functions.

When no items match the reference query, the items array is empty.

JavaScript
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" * } * ] */
Did this help?

totalCount


totalCountnumberRead-only

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.

JavaScript
let resultCount = results.totalCount; // 150
Did this help?

hasNext( )


Indicates if the reference query has more results.

Method Declaration
Copy
function hasNext(): boolean;
Request
This method does not take any parameters
Returns
Return Type:boolean
Get whether the reference query result object has more results
JavaScript
let hasNext = results.hasNext(); // true
Did this help?

hasPrev( )


Indicates if the reference query has previous results.

Method Declaration
Copy
function hasPrev(): boolean;
Request
This method does not take any parameters
Returns
Return Type:boolean
Get whether the reference query result object has previous results
JavaScript
let hasPrev = results.hasPrev(); // false
Did this help?