Skip to content

RecurringAppointment

A Recurring Appointment

Fields

id · ID! · required · The unique identifier of the recurring appointment
join_all · Boolean! · required · Auto-register clients for all appointments in series
repeat_interval · String · Interval between each appointment in the series
repeat_times · String · Count of the appointment recurrences

Used By

Definition

"""
A Recurring Appointment
"""
type RecurringAppointment {
"""
The unique identifier of the recurring appointment
"""
id: ID!
"""
Auto-register clients for all appointments in series
"""
join_all: Boolean!
"""
Interval between each appointment in the series
"""
repeat_interval: String
"""
Count of the appointment recurrences
"""
repeat_times: String
}