INPUT_OBJECT

AppointmentLocationInput

Payload for an appointment location

link GraphQL Schema definition

  • input AppointmentLocationInput {
  • # If true, the location will be deleted
  • _destroy: Boolean
  • # If true, clients can book appointments at this location
  • clients_can_book: Boolean
  • # If true, this location has rooms
  • has_rooms: Boolean
  • # The ID of the location
  • id: ID
  • # The graphql_name of the location
  • location: String
  • # The rooms at this location
  • rooms: [RoomInput]
  • }