Get Override by ID
query{
override(ID:4406){
ID,
teamID,
scheduleID,
startTime,
endTime,
reason,
overriddenParticipant{
participants{
type,
ID
}
},
overrideWith{
participants{
type,
ID
}
}
}
}
Response:
{
"data": {
"override": {
"ID": 4406,
"teamID": "6129ac15518568defa92794b",
"scheduleID": 9053,
"startTime": "2023-05-09T18:30:00Z",
"endTime": "2023-05-10T18:30:00Z",
"reason": "On Leave",
"overriddenParticipant": {
"participants": [
{
"type": "user",
"ID": "6097ca4275a41800079cd724"
}
]
},
"overrideWith": {
"participants": [
{
"type": "user",
"ID": "6097ca4275a41800079cd724"
}
]
}
}
}
}
Last updated