OBJECT
ReportComponentData
link GraphQL Schema definition
- type ReportComponentData {
- # List all report components attached to the user owning the current API key.
- : [ReportComponent!]!
- # Get a report component by its ID.
- #
- # Arguments
- # key: The report component ID
- (: String!): ReportComponent
- # Evaluate a report component script directly, without creating an object first.
- #
- # Arguments
- # contents: [Not documented]
- # filter: [Not documented]
- # debug: [Not documented]
- # reportCode: [Not documented]
- (
- : String!,
- : ReportComponentFilter,
- : Boolean,
- : String!
- ): ReportComponentResult
- }