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 current_status
· AppointmentRequestStatus
· (DEPRECATED) Not in use. current_statuses
· [AppointmentRequestStatus!]
· Filter appointment requests by their current statuses 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!] $current_status: AppointmentRequestStatus $current_statuses: [AppointmentRequestStatus!] $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 current_status: $current_status current_statuses: $current_statuses range_start: $range_start range_end: $range_end after: $after before: $before first: $first last: $last ) { edges nodes page_info total_count }}