Querying business volume
The business volume node carries the customer's answers to your bank's business‑volume questionnaire. See the Business volume concept for the relationship between questionnaireRelation and the deprecated businessVolume alias.
All examples require a JWT — get one from the homepage first.
Fetch the signed submission
query bankReportBusinessVolume($id: UUID!) {
bankReportById(id: $id) {
id
questionnaireRelation {
signedFile {
fileName
fileExtension
base64
}
}
}
}
Read the questionnaire reply
To inspect the customer's answers question by question, project reply — it walks back to the underlying QuestionnaireReply.
query bankReportBusinessVolumeReply($id: UUID!) {
bankReportById(id: $id) {
id
questionnaireRelation {
reply {
id
}
}
}
}
For the full reply shape (questions, answers, revisions) browse QuestionnaireReply in the live schema at /graphql.