My schema looks like this within the yellow coloured square in the image below
And the code on the left side doesn't really work. How can I call this in GraphQL playground?
Appreciate your answer in advance!
{
"input": {
"scheduleId: "123",
"reason": "123"
}
}
mutation {
cancelScheduleByAdmin(input: {
"scheduleId": "123",
"reason": "123"
}) {
...
}
}