Skip to content

AppointmentPerTypePerUserData

The data type for the appointment count for each appointment type per user

Fields

appointment_types · [AppointmentPerTypePerDayData!] · The array containing the appointment count for each appointment type for each appointment status for the specific day
name · String · The name of the specific user who we count appointments for

Used By

Definition

"""
The data type for the appointment count for each appointment type per user
"""
type AppointmentPerTypePerUserData {
"""
The array containing the appointment count for each appointment type for each appointment status for the specific day
"""
appointment_types: [AppointmentPerTypePerDayData!]
"""
The name of the specific user who we count appointments for
"""
name: String
}