OBJECT

GroupField

link GraphQL Schema definition

  • type GroupField implements ReportField {
  • # Identifier of the report box that the field belongs to.
  • boxId: ID!
  • # Identifier of the field being referenced.
  • fieldId: ID!
  • # How records are grouped on this field, for example by day, week, month, quarter
  • # or year for dates, by first letter for text, or by manual or automatic intervals
  • # for numbers.
  • groupOption: GroupOption
  • # Custom numeric intervals used to group records when the group option is set to
  • # manual intervals.
  • groupIntervals: [GroupInterval!]
  • }