OBJECT

PotentialAppointmentSlot

A potential appointment slot

link GraphQL Schema definition

  • type PotentialAppointmentSlot {
  • # The ID of the appointment this slot is for
  • appointment_id: String
  • # The type of appointment the slot is for. Returns nil if not a group appointment.
  • # Returning this for many slots can potentially slow down query times.
  • appointment_type: AppointmentType
  • # The hexcode color of the slot (Not used in Healthie's default self-scheduling
  • # widget)
  • color: String
  • # The date of the slot
  • date: String
  • # Whether this slot has waitlist enabled
  • has_waitlist_enabled: Boolean
  • # Whether this slot is fully booked
  • is_fully_booked: Boolean
  • # The length of the appointment type (in minutes)
  • length: Int
  • # The ID of the user who owns the slot
  • user_id: String
  • }