BookingApiQuery
Every GraphQL schema has a root type for both queries and mutations. The query type defines GraphQL operations that retrieve data from the server.
Fields
availability (
[Availability!]!
)
booking (
Booking
)
bookings (
[Booking!]!
)
Return all Bookings.
Argument | Type | Description |
---|---|---|
customerEmail |
String
|
The email of the Customer to filter by. |
customerId |
ID
|
The ID of the Customer to filter by. |
limit |
Int
|
The maximum number of records to return. |
status |
StatusEnum
|
The status of the Bookings to filter by. |
resource (
Resource
)
resources (
[Resource!]!
)
Return all Resources.
Argument | Type | Description |
---|---|---|
limit |
Int
|
The maximum number of records to return. |
service (
Service
)
services (
[Service!]!
)
Return all Services.
Argument | Type | Description |
---|---|---|
limit |
Int
|
The maximum number of records to return. |