Prescription
A prescription for a patient.
type Prescription {
id: ID!
patient: Patient
doctor: User
date: DateTime
status: String
drugs: [PrescriptionDrug]
items: [PrescriptionItem]
prescriptionType: String
dateShared: DateTime
pdfDownloadUrl: String
}
Fields
Prescription.id ● ID! non-null scalar
Prescription.patient ● Patient object
Prescription.doctor ● User object
Prescription.date ● DateTime scalar
Prescription.status ● String scalar
Prescription.drugs ● [PrescriptionDrug] list object
Prescription.items ● [PrescriptionItem] list object
Prescription.prescriptionType ● String scalar
The non-drug item type in the prescription; not applicable to drug prescriptions
Prescription.dateShared ● DateTime scalar
Prescription.pdfDownloadUrl ● String scalar
A time-limited URL (15 minutes) to download the prescription PDF.
Returned By
prescription query
Member Of
PrescriptionData object
Implemented By
Attachment union