Skip to main content

BloodSugar

Type for the client's blood sugar measurements

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

Fields

BloodSugar.cancelledAt ● LocalDateTime scalar

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

BloodSugar.employee ● Employee! non-null object

The employee who measured the client's vital sign

BloodSugar.id ● VitalSignID! non-null scalar

Unique identifier

BloodSugar.reason ● String scalar

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

BloodSugar.recordedAt ● LocalDateTime! non-null scalar

Date and time of the vital sign measurement

BloodSugar.status ● RecordStatusType! non-null enum

Status of the vital sign

BloodSugar.type ● VitalSignType! non-null enum

Type of the recorder vital sign

BloodSugar.value ● Float! non-null scalar

Value of the client's blood sugar, float up to 2 digits with a single decimal place, in mmol/l

Interfaces

VitalSign interface

Generic interface for the vital signs