BloodPressure
Type for the client's blood pressure measurements
type BloodPressure implements VitalSign {
cancelledAt: LocalDateTime
employee: Employee!
id: VitalSignID!
reason: String
recordedAt: LocalDateTime!
status: RecordStatusType!
type: VitalSignType!
upperValue: Int!
value: Float!
}
Fields
BloodPressure.cancelledAt ● LocalDateTime scalar
Shows when the vital sign has been cancelled. Only applicable when status == 'CANCELLED'
BloodPressure.employee ● Employee! non-null object
The employee who measured the client's vital sign
BloodPressure.id ● VitalSignID! non-null scalar
Unique identifier
BloodPressure.reason ● String scalar
Reason for cancelling the vital sign. Only applicable when status == 'CANCELLED'
BloodPressure.recordedAt ● LocalDateTime! non-null scalar
Date and time of the vital sign measurement
BloodPressure.status ● RecordStatusType! non-null enum
Status of the vital sign
BloodPressure.type ● VitalSignType! non-null enum
Type of the recorder vital sign
BloodPressure.upperValue ● Int! non-null scalar
Upper value of the client's blood pressure, integer up to 2 digits, in mm/Hg
BloodPressure.value ● Float! non-null scalar
Value of the client's blood pressure, integer up to 2 digits, in mm/Hg
Interfaces
VitalSign interface
Generic interface for the vital signs