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