OBJECT

AppointmentInclusionType

Provider/Client to Appointment connection

link GraphQL Schema definition

  • type AppointmentInclusionType {
  • # The appointment the inclusion is connected to.
  • appointment: Appointment
  • # Indicate whether a group appointment attendee have taken part in the appointment
  • attended: Boolean
  • # Indicate if a group appointment attendee cancelled the appointment
  • cancelled: Boolean
  • # If the client has confirmed the appointment, or don't need to (THIS IS FIELD IS
  • # CURRENTLY USED ONLY FOR GROUP APPT's)
  • confirmed: Boolean
  • # The UUID of the appointment inclusion. Can be used in conjunction with
  • # appointment settings to allow unauthenticated users to modify an appointment.
  • external_uuid: ID
  • # The unique identifier of the appointment inclusion
  • id: ID!
  • # The datetime that the attendee joined the appointment
  • join_time: String
  • # The datetime that the attendee left the appointment
  • leave_time: String
  • # Attendee
  • user: User
  • # Attendee ID
  • user_id: ID @deprecated( reason: "Use `user` field" )
  • }