Skip to content

appointmentRequests

Fetch a collection of appointment requests for a provider or organization

Arguments

with_org · Boolean · (DEPRECATED) Not in use.
appointment_location_ids · [ID!] · Filter by one or more appointment location IDs
range_start · ISO8601Date · Filter requests where the appointment requested slot is after this date
range_end · ISO8601Date · Filter requests where the appointment requested slot is before this date
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

AppointmentRequestTypeConnection

Example

query appointmentRequests(
$order_by: AppointmentRequestOrderKeys
$with_org: Boolean
$appointment_location_ids: [ID!]
$range_start: ISO8601Date
$range_end: ISO8601Date
$after: String
$before: String
$first: Int
$last: Int
) {
appointmentRequests(
order_by: $order_by
with_org: $with_org
appointment_location_ids: $appointment_location_ids
range_start: $range_start
range_end: $range_end
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}