scheduledAppointments
Appointments for a given user
GraphQL Schema
extend type query {
"""Appointments for a given user"""
scheduledAppointments(userId: ID!): [Appointment!]!
}
Arguments
| Name | Type | Description |
|---|---|---|
| userId | ID! | Unique ID of the user |
Response Shape
This query returns [Appointment!]!
| Name | Type | Description |
|---|---|---|
| id | ID! | Unique ID of the object |
| startTime | Datetime! | |
| endTime | Datetime! | |
| advisorId | ID! | |
| advisorName | String! | |
| advisorEmail | String | |
| advisorPhone | String | |
| reason | String |