Skip to main content

report

Retrieves a report that was previously generated with the generateReport mutation. Note that if the report is still being processed that the status field on the ReportExecution object will indicate this, and the data in the results field will be null. Thus, this method can be polled to determine when report generation is complete.

report(
page: Int = 1
where: ReportFilterInput!
): ReportResponse

Arguments

report.page ● Int scalar

Specifies the page of the report to be returned, if report generation is complete. Since reports may be large, they are generated page-by-page with a standard row count and and thus don't use cursor-based paging, instead they use page-number based retrieval to return the specified pre-generated page. This value is 1-based and defaults to 1.

report.where ● ReportFilterInput! non-null input

The ReportFilterInput specifies which report execution to retrieve.

Type

ReportResponse union

The possible return types when retrieving a generated report.