OBJECT

CustomReportInfo

Description

Simplified report information for custom reports.

link GraphQL Schema definition

  • type CustomReportInfo {
  • # Timestamp of when the report was created.
  • createdAt: DateTime
  • # Email address of the user who created the report.
  • createdBy: String!
  • # Unique identifier of the report.
  • id: Long!
  • # Name of the report.
  • name: String!
  • # Category of the report.
  • reportCategory: ReportCategory!
  • # Filters applied to the report.
  • reportFilters: [FilterOutput!]!
  • # Type of report view.
  • reportViewType: PolarisReportViewType!
  • # Room the report belongs to.
  • room: ReportRoomType!
  • # Number of scheduled reports associated with the report.
  • scheduledReportsCount: Int!
  • # Timestamp of when the report was last updated.
  • updatedAt: DateTime
  • # Email address of the user who last updated the report.
  • updatedBy: String!
  • }