Skip to content

CreateCareAlertInput

Autogenerated input type of CreateCareAlert

Fields

deprecated DO NOT USE
patient_id · ID! · required · ID of the patient this alert is for
template_id · ID · ID of an AlertTemplate to use as content source
content · String · Custom content for the alert; supersedes template content when both are provided
priority · CareAlertPriorityEnum · Priority level of the alert
expires_at · ISO8601DateTime · When the alert should expire
deprecated Use `expires_on` instead
expires_on · ISO8601Date · Date when the alert should expire

Used By

Definition

"""
Autogenerated input type of CreateCareAlert
"""
input CreateCareAlertInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the patient this alert is for
"""
patient_id: ID!
"""
ID of an AlertTemplate to use as content source
"""
template_id: ID
"""
Custom content for the alert; supersedes template content when both are provided
"""
content: String
"""
Priority level of the alert
"""
priority: CareAlertPriorityEnum
"""
When the alert should expire
"""
expires_at: ISO8601DateTime @deprecated(reason: "Use `expires_on` instead")
"""
Date when the alert should expire
"""
expires_on: ISO8601Date
}