OBJECT

Aggregation

types.aggregation

link GraphQL Schema definition

  • type Aggregation {
  • # The field being aggregated.
  • field: String!
  • # The aggregation value, if the aggregation type is anything other than `COUNT`.
  • # This is provided as a string to assist with 64bit integer handling in
  • # Javascript.
  • value: String
  • # A list of counts, if the aggregation type is `COUNT`.
  • counts: [AggregationBucketResult]
  • # The AggregationFunction used.
  • aggregation_function: AggregationFunction!
  • }

link Require by