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
Did this help?

length


lengthnumberRead-only

Returns the number of values in the aggregate results.

JavaScript
Did this help?

hasNext( )


Indicates if the aggregation has more results.

Method Declaration
Copy
function hasNext(): boolean;
Request
This method does not take any parameters
Returns
Return Type:boolean
JavaScript
let hasNext = results.hasNext(); // true
Did this help?