Aggregators type aliases
This is the collection of aggregators type aliases within the queries
module. There are 4 aggregators type aliases in total.
Aggregate
The Aggregate type describes a custom function that takes an array of Cell
values and returns an aggregate of them.
AggregateAdd
The AggregateAdd type describes a function that can be used to optimize a custom Aggregate by providing a shortcut for when a single value is added to the input values.
AggregateRemove
The AggregateRemove type describes a function that can be used to optimize a custom Aggregate by providing a shortcut for when a single value is removed from the input values.
AggregateReplace
The AggregateReplace type describes a function that can be used to optimize a custom Aggregate by providing a shortcut for when a single value in the input values is replaced with another.