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 icd_codes_individual_client_notes
· [IcdCodesIndividualClientNote!]
· Diagnoses connected to the individual client attendance 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 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}