ReportResults
ReportResults represents a single result page containing the data output from a report generation.
type ReportResults {
  columnHeaders: [String!]!
  rows: [JSONObject!]!
  totalPages: Int!
}
Fields
ReportResults.columnHeaders ● [String!]! non-null scalar
The column header names in the report.
ReportResults.rows ● [JSONObject!]! non-null scalar
The report data is returned as an array of JSON objects. The keys in the object will match the
columnHeader names.
ReportResults.totalPages ● Int! non-null scalar
The total number of pages for this generated report
Member Of
Report object