OBJECT
CustomReportInfo
Description
Simplified report information for custom reports.
link GraphQL Schema definition
- type CustomReportInfo {
- # Timestamp of when the report was created.
- : DateTime
- # Email address of the user who created the report.
- : String!
- # Unique identifier of the report.
- : Long!
- # Name of the report.
- : String!
- # Category of the report.
- : ReportCategory!
- # Filters applied to the report.
- : [FilterOutput!]!
- # Type of report view.
- : PolarisReportViewType!
- # Room the report belongs to.
- : ReportRoomType!
- # Number of scheduled reports associated with the report.
- : Int!
- # Timestamp of when the report was last updated.
- : DateTime
- # Email address of the user who last updated the report.
- : String!
- }
link Require by
- CustomReportInfoConnectionPaginated list of CustomReportInfo objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- CustomReportInfoEdgeWrapper around the CustomReportInfo object. This wrapper is used for pagination.
- Query