INPUT_OBJECT

AggFilter

AggFilter is a filter used for aggragation queries

link GraphQL Schema definition

  • input AggFilter {
  • # filter is the filter to apply against the graph.
  • filter: Filter!
  • # aggregate is the aggregation function to apply against the graph
  • aggregate: Aggregate!
  • # field is the field to aggregate(ex: attributes.age). The field must be a
  • # float/number value
  • field: String
  • }

link Require by