availableAppointments
Appointments available on a given day
GraphQL Schema
extend type query {
"""Appointments available on a given day"""
availableAppointments(userId: ID, date: Date!): [AvailableAppointment!]!
}
Arguments
Name | Type | Description |
---|---|---|
userId | ID | Unique ID of the user |
date | Date! |
Response Shape
This query returns [AvailableAppointment!]!
Name | Type | Description |
---|---|---|
id | ID! | Unique ID of the object |
startTime | Datetime! | |
endTime | Datetime! |