appointmentRequests
Fetch a collection of appointment requests for a provider or organization
Arguments
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 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 }}