OBJECT

IndividualClientType

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

link GraphQL Schema definition

  • 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
  • # Associated patient
  • user: User
  • }