Skip to content

DiagnosesInput

Payload for a diagnosis

Fields

_destroy · Boolean · If true, the diagnosis will be deleted upon saving
active · Boolean · Whether the diagnosis is active or not
primary · Boolean · Whether the diagnosis is the primary diagnosis
end_date · String · The date of the end of the diagnosis
first_symptom_date · String · The date of the first symptom
icd_code_id · ID · The ID of the ICD code
id · ID · The ID of the diagnosis

Used By

Definition

"""
Payload for a diagnosis
"""
input DiagnosesInput {
"""
If true, the diagnosis will be deleted upon saving
"""
_destroy: Boolean
"""
Whether the diagnosis is active or not
"""
active: Boolean
"""
Whether the diagnosis is the primary diagnosis
"""
primary: Boolean
"""
The date of the end of the diagnosis
"""
end_date: String
"""
The date of the first symptom
"""
first_symptom_date: String
"""
The ID of the ICD code
"""
icd_code_id: ID
"""
The ID of the diagnosis
"""
id: ID
}