OBJECT

ReportComponentResult

link GraphQL Schema definition

  • type ReportComponentResult {
  • # The return value of the component as a JSON string. If the component throws an
  • # error, this will be null
  • output: JSON
  • # When evaluated with `debug: True`, this includes the `console.log` output as a
  • # string.
  • logs: String
  • # The description of the exception the component threw (if it threw one). Note
  • # that component failures DO NOT produce standard GraphQL errors.
  • error: String
  • }