ENUM
Aggregate
link GraphQL Schema definition
- enum Aggregate {
- # Count counts the number of elements in the group defined
- # SUM calculates the sum of the given attribute/expression in the group defined
- # AVG calculates the average value of the given attribute/expression in the group
- # defined
- # MAX finds the maximum in the group defined
- # MIN finds the minimum in the group defined
- # PROD finds the product of all of the values in the group defined
- }