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"
* }
* ]
*/