OBJECT

AppointmentSummaryData

link GraphQL Schema definition

  • type AppointmentSummaryData {
  • # The array containing the appointment count for each appointment status for the
  • # specific day
  • appointment_history: [AppointmentPerDayData]
  • # The array containing the appointment count for each appointment status for each
  • # provider for the specific day
  • appointment_history_per_provider: [AppointmentPerUserData]
  • # The array containing the appointment count for each appointment status for each
  • # provider for each appointment type for the specific day
  • appointment_history_per_provider_and_type: [AppointmentPerTypePerUserData]
  • # The array containing the appointment count for each appointment status for each
  • # appointment type for the specific day
  • appointment_history_per_type: [AppointmentPerTypePerDayData]
  • # The count of appointments for each appointment type
  • appointments_per_type_count: [AppointmentTypeAppointmentCountData]
  • # The average amount of appointments per day
  • avg_per_day: Int
  • # The difference between the current average amount of appointments and the
  • # average count of appointments in prior period
  • avg_per_day_percent_diff: Int
  • # The busiest week day in selected period
  • busiest_days_of_week: [String]
  • # The difference in contrast to previous period in percents
  • percent_diff: Int
  • # The total appointment count
  • total_count: Int
  • }