OBJECT

UpdateCustomReportReply

Description

Metadata for rendering a custom report.

link GraphQL Schema definition

  • type UpdateCustomReportReply {
  • # ID of the custom report.
  • id: Int!
  • # Name of the custom report.
  • name: String!
  • # The metrics focus of the custom report.
  • focus: ReportFocusEnum!
  • # Specifies whether the report should be hidden from the gallery view.
  • isHidden: Boolean!
  • # Specifies whether the report is auto-generated and not editable.
  • isReadOnly: Boolean!
  • # The filters applied to the data in the report.
  • filters: CustomReportFilters!
  • # Time the report was created.
  • createdAt: DateTime!
  • # Time the report was last updated and saved.
  • updatedAt: DateTime!
  • # Time the report was last viewed or opened.
  • viewedAt: DateTime!
  • # Room of the report.
  • room: String
  • # The list of charts in the custom report.
  • charts: [ReportChartType!]!
  • # The list of tables in the custom report.
  • tables: [ReportTableType!]!
  • # The creator of the custom report.
  • owner: User!
  • # Date of the oldest sync for the report.
  • oldestSyncDate: DateTime
  • # Date of the most recent sync for the report.
  • newestSyncDate: DateTime
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • scheduledReportConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String
  • ): ScheduledReportConnection!
  • }

link Require by