Skip to main content

Querying the summary

The summary is the cover sheet describing the bank report. See the Summary concept.

All examples require a JWT — get one from the homepage first.

Fetch the signed summary

Note the field name: it's signedSummaryFile on summary, not signedFile.

query bankReportSummary($id: UUID!) {
bankReportById(id: $id) {
id
isSummaryRequired
summary {
signedSummaryFile {
fileName
fileExtension
base64
}
}
}
}