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