VitalSign
Generic interface for the vital signs
interface VitalSign {
cancelledAt: LocalDateTime
employee: Employee!
id: VitalSignID!
reason: String
recordedAt: LocalDateTime!
status: RecordStatusType!
type: VitalSignType!
}
Fields
VitalSign.cancelledAt ● LocalDateTime scalar
Shows when the vital sign has been cancelled. Only applicable when status == 'CANCELLED'
VitalSign.employee ● Employee! non-null object
The employee who measured the client's vital sign
VitalSign.id ● VitalSignID! non-null scalar
Unique identifier
VitalSign.reason ● String scalar
Reason for cancelling the vital sign. Only applicable when status == 'CANCELLED'
VitalSign.recordedAt ● LocalDateTime! non-null scalar
Date and time of the vital sign measurement
VitalSign.status ● RecordStatusType! non-null enum
Status of the vital sign
VitalSign.type ● VitalSignType! non-null enum
Type of the recorder vital sign
Member Of
VitalSignEdge object
Implemented By
BloodPressure object ● BloodSugar object ● FluidExport object ● FluidIntake object ● OxygenSaturation object ● Pulse object ● SocialCare object ● Temperature object ● Weight object