Skip to main content

FluidIntake

Type for the client's fluid intake measurements

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

Fields

FluidIntake.cancelledAt ● LocalDateTime scalar

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

FluidIntake.description ● String scalar

Description of the fluid type in free text, up to 100 characters

FluidIntake.employee ● Employee! non-null object

The employee who measured the client's vital sign

FluidIntake.id ● VitalSignID! non-null scalar

Unique identifier

FluidIntake.reason ● String scalar

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

FluidIntake.recordedAt ● LocalDateTime! non-null scalar

Date and time of the vital sign measurement

FluidIntake.status ● RecordStatusType! non-null enum

Status of the vital sign

FluidIntake.type ● VitalSignType! non-null enum

Type of the recorder vital sign

FluidIntake.value ● Float! non-null scalar

Value of the client's fluid intake, float up to 4 digits with a single decimal place, in ml

Interfaces

VitalSign interface

Generic interface for the vital signs