OBJECT

AggregationComparison

link GraphQL Schema definition

  • type AggregationComparison {
  • # Whether the aggregation value is compared against another value in the pivot.
  • isEnabled: Boolean!
  • # What the value is compared against: the row total, the column total, the grand
  • # total, or another field's aggregation.
  • type: AggregationComparisonType!
  • # Identifier of the field whose aggregation is compared against; set when the
  • # comparison type is Field.
  • fieldId: UUID
  • # How the comparison field's values are aggregated, such as Count, Sum, Average,
  • # Min or Max.
  • operator: AggregationOperator!
  • }