ClinicalReport
Metadata for a clinical report and a download URL for the report PDF.
type ClinicalReport {
id: ID!
reportType: ClinicalReportType!
status: ClinicalReportStatus!
locked: Boolean
feedbackComment: String
completedAt: DateTime
completedBy: User
downloadUrl: String
}
Fields
ClinicalReport.id ● ID! non-null scalar
ClinicalReport.reportType ● ClinicalReportType! non-null enum
ClinicalReport.status ● ClinicalReportStatus! non-null enum
ClinicalReport.locked ● Boolean scalar
Whether the report is locked for editing.
ClinicalReport.feedbackComment ● String scalar
Active governance feedback comment, if any.
ClinicalReport.completedAt ● DateTime scalar
Date the report was completed.
ClinicalReport.completedBy ● User object
User who submitted the report.
ClinicalReport.downloadUrl ● String scalar
Presigned URL to download the report PDF. Only available via the clinicalReport query. Returns null when no PDF has been stored for the report.
Returned By
clinicalReport query