Skip to content

RecurringAppointment

A Recurring Appointment

Fields

appointments · AppointmentPaginationConnection · All appointments for recurring appointment
id · ID! · required · The unique identifier of the recurring appointment
join_all · Boolean! · required · Auto-register clients for all appointments in series
previous_recurring_appointment_id · ID · The ID of the previous recurring appointment if this was split from another
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 {
"""
All appointments for recurring appointment
"""
appointments(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
order_by: AppointmentOrderKeys = DATE_ASC
): AppointmentPaginationConnection
"""
The unique identifier of the recurring appointment
"""
id: ID!
"""
Auto-register clients for all appointments in series
"""
join_all: Boolean!
"""
The ID of the previous recurring appointment if this was split from another
"""
previous_recurring_appointment_id: ID
"""
Interval between each appointment in the series
"""
repeat_interval: String
"""
Count of the appointment recurrences
"""
repeat_times: String
}