Weight
Type for the client's weight measurements
type Weight implements VitalSign {
cancelledAt: LocalDateTime
employee: Employee!
id: VitalSignID!
measurementType: WeightMeasurementType!
reason: String
recordedAt: LocalDateTime!
status: RecordStatusType!
type: VitalSignType!
value: Float!
}
Fields
Weight.cancelledAt ● LocalDateTime scalar
Shows when the vital sign has been cancelled. Only applicable when status == 'CANCELLED'
Weight.employee ● Employee! non-null object
The employee who measured the client's vital sign
Weight.id ● VitalSignID! non-null scalar
Unique identifier
Weight.measurementType ● WeightMeasurementType! non-null enum
Type of the measurement. Can be either weight or upper arm measurement
Weight.reason ● String scalar
Reason for cancelling the vital sign. Only applicable when status == 'CANCELLED'
Weight.recordedAt ● LocalDateTime! non-null scalar
Date and time of the vital sign measurement
Weight.status ● RecordStatusType! non-null enum
Status of the vital sign
Weight.type ● VitalSignType! non-null enum
Type of the recorder vital sign
Weight.value ● Float! non-null scalar
Value of the client's weight OR upper arm measurement, float up to 3 digits with a single decimal place, respectively in kg or cm.
Interfaces
VitalSign interface
Generic interface for the vital signs