Skip to content

IndividualClientType

An object containing an individual note for certain patient associated with group charting note

Fields

appointment_inclusion_id · ID · The ID of related appointment_inclusion
attended · Boolean · True if user has attended the appointment
content · String · The content of the note
icd_codes_individual_client_notes · [IcdCodesIndividualClientNote!] · Diagnoses connected to the individual client attendance
id · ID! · required · The unique identifier of the note
join_time · String · The datetime that the attendee joined the appointment (comes from the related appointment inclusion)
leave_time · String · The datetime that the attendee left the appointment (comes from the related appointment inclusion)
updated_at · ISO8601DateTime · The time of the last update
user · User · Associated patient

Used By

Definition

"""
An object containing an individual note for certain patient associated with group charting note
"""
type IndividualClientType {
"""
The ID of related appointment_inclusion
"""
appointment_inclusion_id: ID
"""
True if user has attended the appointment
"""
attended: Boolean
"""
The content of the note
"""
content: String
"""
Diagnoses connected to the individual client attendance
"""
icd_codes_individual_client_notes: [IcdCodesIndividualClientNote!]
"""
The unique identifier of the note
"""
id: ID!
"""
The datetime that the attendee joined the appointment (comes from the related appointment inclusion)
"""
join_time: String
"""
The datetime that the attendee left the appointment (comes from the related appointment inclusion)
"""
leave_time: String
"""
The time of the last update
"""
updated_at: ISO8601DateTime
"""
Associated patient
"""
user: User
}