OBJECT

ContactType

A object containing information about whether a specific contact type can be booked

link GraphQL Schema definition

  • type ContactType {
  • # ID of the connected appointment setting
  • appointment_setting_id: String
  • # ID of the connected appointment type
  • appointment_type_id: String
  • # An Alias of ID that makes creating the form easier
  • form_id: String
  • # The unique identifier of the contact type
  • id: ID
  • # The graphql_name of the contact type
  • name: String
  • # Whether this contact type can be used
  • show: Boolean!
  • # The ID of the connected user
  • user_id: String
  • }