OBJECT

ReportComponent

link GraphQL Schema definition

  • type ReportComponent {
  • # The component's unique key.
  • key: String!
  • # The human-readable name of the component
  • name: String!
  • # Whether the component is currently protected from deletion.
  • deletionProtected: Boolean!
  • # The contents of the component script.
  • contents: String
  • # Evaluate a report component against report data, returning the result.
  • #
  • # Arguments
  • # filter: [Not documented]
  • # debug: [Not documented]
  • # reportCode: [Not documented]
  • evaluate(filter: ReportComponentFilter, debug: Boolean, reportCode: String!): ReportComponentResult
  • }