Skip to content

CareAlert

A care alert associated with a patient. These can notify users about important information related to this patient.

Fields

content · String! · required · Text content of the care alert
created_at · ISO8601DateTime! · required · When the care alert was created
creator · User · Provider who created this care alert
deleted_at · ISO8601DateTime · When the care alert was soft-deleted
expires_at · ISO8601DateTime · When the care alert expires
deprecated Use `expires_on` instead
expires_on · ISO8601Date · Date when the care alert expires
id · ID! · required · Unique identifier of the care alert
patient · User · Patient this care alert is associated with
priority · CareAlertPriorityEnum! · required · Priority level of the care alert
updated_at · ISO8601DateTime! · required · When the care alert was last updated

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!
}