CareAlert
A care alert associated with a patient. These can notify users about important information related to this patient.
Fields
deleted_at
· ISO8601DateTime · When the care alert was soft-deleted expires_at
· ISO8601DateTime · When the care alert expires deprecated
Use `expires_on` insteadexpires_on
· ISO8601Date · Date when the care alert expires Used By
Definition
"""A care alert associated with a patient. These can notify users about important information related to this patient."""type CareAlert { """ Text content of the care alert """ content: String!
""" When the care alert was created """ created_at: ISO8601DateTime!
""" Provider who created this care alert """ creator: User
""" When the care alert was soft-deleted """ deleted_at: ISO8601DateTime
""" When the care alert expires """ expires_at: ISO8601DateTime @deprecated(reason: "Use `expires_on` instead")
""" Date when the care alert expires """ expires_on: ISO8601Date
""" Unique identifier of the care alert """ id: ID!
""" Patient this care alert is associated with """ patient: User
""" Priority level of the care alert """ priority: CareAlertPriorityEnum!
""" When the care alert was last updated """ updated_at: ISO8601DateTime!}