Introduction

When you execute an aggregation with the run() function, it returns a Promise that resolves to a WixDataAggregateResult object, which contains the aggregated values.

Did this help?

items


itemsArray<object>Read-only

Gets the aggregated values.

The current page of items retrieved by the aggregation.

The page size is defined by the limit() function and navigating through pages is done with the next() function.

When no items match the aggregation, the items array is empty.

JavaScript
let items = results.items;
Did this help?