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?