OBJECT

AggregationField

link GraphQL Schema definition

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