Skip to main content

Temperature

Type for the client's temperature measurements

type Temperature implements VitalSign {
cancelledAt: LocalDateTime
employee: Employee!
id: VitalSignID!
reason: String
recordedAt: LocalDateTime!
status: RecordStatusType!
type: VitalSignType!
value: Float!
}

Fields

Temperature.cancelledAt ● LocalDateTime scalar

Shows when the vital sign has been cancelled. Only applicable when status == 'CANCELLED'

Temperature.employee ● Employee! non-null object

The employee who measured the client's vital sign

Temperature.id ● VitalSignID! non-null scalar

Unique identifier

Temperature.reason ● String scalar

Reason for cancelling the vital sign. Only applicable when status == 'CANCELLED'

Temperature.recordedAt ● LocalDateTime! non-null scalar

Date and time of the vital sign measurement

Temperature.status ● RecordStatusType! non-null enum

Status of the vital sign

Temperature.type ● VitalSignType! non-null enum

Type of the recorder vital sign

Temperature.value ● Float! non-null scalar

Value of the client's temperature, float up to 2 digits with a single decimal place, in degrees (Celsius)

Interfaces

VitalSign interface

Generic interface for the vital signs