Appointment Types

Use the appointmentTypes to get the information of all appointments created in the Calendar tab.

Available Fields

Field Name

Type

Description

id

ID

Appointment unique ID

title

String

Appointment title

createdAt

DateTime

Date and time when the appointment is created.

updatedAt

DateTime

Date and time when the appointment is updated.

numberOfMember

Int

Number of members set in the appointment.

durationMin

Int

Appointment duration. Expressed in minutes.

contactType

CalendarContactType

Appointment contact type. Possible Values: "VIDEO_CALL", "PHONE_CALL", "ZOOM", "GOOGLE_MEET"

Example

{
  appointmentTypes {
    types {
      id
      title
      createdAt
      updatedAt
      numberOfMember
      durationMin
      contactType
      coachesPool{
        name
        email
      }
    }
  }
}

Within the TeleWellness Portal, the appointment list is displayed as follows:

Last updated