Skip to content

Aggregation Methods

Learn aggregation methods like sum(), max(), min(), groupBy(), and countBy().

const total = collection.sum('price');
const max = collection.max('score');
const groups = collection.groupBy('category');