OBJECT
AggregationField
link GraphQL Schema definition
- type AggregationField {
- # Unique identifier of this aggregation column in the pivot.
- : UUID!
- # Display name of the aggregation column.
- : String
- # ID of field used for aggregation, leave empty if aggregation is set to Count
- : UUID
- # One of the possible aggregation options
- : AggregationOperator!
- # Comparison applied to this aggregation column, such as comparing against a row,
- # column or grand total.
- : AggregationComparison!
- # Width of the column; if Null the default width is used.
- : Int
- # Conditional formatting applied to this column's cells based on their value.
- : ColumnFormatting
- # RGB color code converted to integer, if value is Null uses no color
- : Int
- }