Skip to main content

ReportInformation

Represents a custom report's execution information

type ReportInformation {
id: UUID!
query: String!
status: ReportQueryRunStatus!
runBy: UUID!
startDate: DateTime!
completionDate: DateTime
errorMessage: String
}

Fields

ReportInformation.id ● UUID! non-null scalar

The report unique identifier.

ReportInformation.query ● String! non-null scalar

The query to be run for generating the report.

ReportInformation.status ● ReportQueryRunStatus! non-null enum

The status of the report's query run.

ReportInformation.runBy ● UUID! non-null scalar

UUID for the user who triggered the report generation.

ReportInformation.startDate ● DateTime! non-null scalar

The start date of the report definition's query run.

ReportInformation.completionDate ● DateTime scalar

The completion date of the report definition's query run.

ReportInformation.errorMessage ● String scalar

The error message for the report if generation failed

Returned By

runReportDefinitionQuery mutation

Member Of

ReportDefinition object