OBJECT
UpdateCustomReportReply
Description
Metadata for rendering a custom report.
link GraphQL Schema definition
- type UpdateCustomReportReply {
- # The list of charts in the custom report.
- : [ReportChartType!]!
- # Time the report was created.
- : DateTime!
- # The filters applied to the data in the report.
- : CustomReportFilters!
- # The metrics focus of the custom report.
- : ReportFocusEnum!
- # ID of the custom report.
- : Int!
- # Specifies whether the report should be hidden from the gallery view.
- : Boolean!
- # Specifies whether the report is auto-generated and not editable.
- : Boolean!
- # Name of the custom report.
- : String!
- # Date of the most recent sync for the report.
- : DateTime
- # Date of the oldest sync for the report.
- : DateTime
- # The creator of the custom report.
- : User!
- # Room of the report.
- : String
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- (
- : Int,
- : String,
- : Int,
- : String
- ): ScheduledReportConnection!
- # The list of tables in the custom report.
- : [ReportTableType!]!
- # Time the report was last updated and saved.
- : DateTime!
- # Time the report was last viewed or opened.
- : DateTime!
- }