Skip to content

Immunization

User immunization

Fields

additional_notes · String · Additional notes
cvx_code · Int! · required · The cvx_code
id · ID! · required · The unique identifier of the type
received_at · String! · required · Time when the immunization was received
status · String! · required · The immunization status
user_id · ID! · required · The identifier of the user
vaccine_name · String! · required · The description of the code

Used By

Definition

"""
User immunization
"""
type Immunization {
"""
Additional notes
"""
additional_notes: String
"""
The cvx_code
"""
cvx_code: Int!
"""
The unique identifier of the type
"""
id: ID!
"""
Time when the immunization was received
"""
received_at: String!
"""
The immunization status
"""
status: String!
"""
The identifier of the user
"""
user_id: ID!
"""
The description of the code
"""
vaccine_name: String!
}