Skip to content

UpdateCareAlertInput

Autogenerated input type of UpdateCareAlert

Fields

deprecated DO NOT USE
id · ID! · required · ID of the care alert to update
content · String · Updated content for the alert
priority · CareAlertPriorityEnum · Updated priority level
expires_at · ISO8601DateTime · Updated expiration time
deprecated Use `expires_on` instead
expires_on · ISO8601Date · Updated expiration date

Used By

Definition

"""
Autogenerated input type of UpdateCareAlert
"""
input UpdateCareAlertInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the care alert to update
"""
id: ID!
"""
Updated content for the alert
"""
content: String
"""
Updated priority level
"""
priority: CareAlertPriorityEnum
"""
Updated expiration time
"""
expires_at: ISO8601DateTime @deprecated(reason: "Use `expires_on` instead")
"""
Updated expiration date
"""
expires_on: ISO8601Date
}