OBJECT

TableReportTotal

link GraphQL Schema definition

  • type TableReportTotal {
  • # Whether the totals row is shown for each group in a table report. Has no effect
  • # unless at least one of the individual total values below is enabled.
  • isEnabled: Boolean!
  • # Whether a grand total covering all rows is shown in addition to the per-group
  • # totals.
  • showGrandTotal: Boolean!
  • # Whether the totals appear above the rows they summarise (Top) or below them
  • # (Bottom).
  • position: ReportTotalPosition!
  • # Whether the sum of each numeric column is shown in the totals.
  • showSum: Boolean!
  • # Whether the average of each numeric column is shown in the totals.
  • showAverage: Boolean!
  • # Whether the minimum value of each numeric column is shown in the totals.
  • showMin: Boolean!
  • # Whether the maximum value of each numeric column is shown in the totals.
  • showMax: Boolean!
  • # Whether a status breakdown (such as won, lost and open counts for opportunities
  • # or leads) is shown in the totals.
  • showStatus: Boolean!
  • }