CreateCareAlertInput
Autogenerated input type of CreateCareAlert
Fields
clientMutationId
· String · DO NOT USE deprecated
DO NOT USEtemplate_id
· ID · ID of an AlertTemplate to use as content source priority
· CareAlertPriorityEnum · Priority level of the alert expires_at
· ISO8601DateTime · When the alert should expire deprecated
Use `expires_on` insteadexpires_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}