Skip to content

updateEpisodeOfCareInput

Autogenerated input type of updateEpisodeOfCare

Fields

deprecated DO NOT USE
id · ID! · required · ID of the episode of care to update
patient_id · ID! · required · ID of the patient to create an episode of care for
provider_id · ID! · required · ID of the provider responsible for the patient episodes of care
diagnosis_id · ID! · required · ID of the diagnosis associated with this episode of care
start_date · ISO8601Date! · required · Start date (must be present or in the past) for this episode of care
end_date · ISO8601Date · End date when episodes of care ended

Used By

Definition

"""
Autogenerated input type of updateEpisodeOfCare
"""
input updateEpisodeOfCareInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the episode of care to update
"""
id: ID!
"""
ID of the patient to create an episode of care for
"""
patient_id: ID!
"""
ID of the provider responsible for the patient episodes of care
"""
provider_id: ID!
"""
ID of the diagnosis associated with this episode of care
"""
diagnosis_id: ID!
"""
Start date (must be present or in the past) for this episode of care
"""
start_date: ISO8601Date!
"""
End date when episodes of care ended
"""
end_date: ISO8601Date
}