OBJECT

AppointmentLocation

A location where appointments are held

link GraphQL Schema definition

  • type AppointmentLocation {
  • # Whether the client can select this location or not
  • clients_can_book: Boolean!
  • # Whether the location has any rooms
  • has_rooms: Boolean
  • # The unique identifier of the appointment
  • id: ID!
  • # The location (in plain text)
  • location: String
  • # The rooms at the location
  • rooms: [Room!]
  • }