OBJECT

ReportTable

link GraphQL Schema definition

  • type ReportTable implements ReportStructureItem {
  • # Unique identifier of this item within the report structure.
  • id: ID!
  • # ID of a parent report structure, if ID is NULL this identifies root item, no
  • # more than one root item is allowed
  • parentId: ID
  • # Order of the item on the within same parent
  • sortOrder: Int!
  • # Primary box of the table, defining the entity each row represents and its
  • # displayed columns.
  • mainBox: ReportMainBox!
  • # Related boxes joined to the main box to pull in or aggregate data from related
  • # records.
  • siblingBoxes: [SiblingBoxInterface!]!
  • # Filter and view settings for the table report.
  • tabs: TableReportTabsInterface!
  • }

link Require by

This element is not required by anyone