ENUM

Aggregate

link GraphQL Schema definition

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