P_removeCallback
You can remove specified API callbacks by supplying its ID
Supported arguments
The following arguments are supported by P_removeCallback mutation:
Field | Type | Description |
---|---|---|
input | P_API_RemoveCallbackInput! | Callback ID to remove |
Return type
The mutation returns theP_API_RemoveCallbackResponse
type.
Example usage
Mutation
mutation removeMyCallback($id: Uuid!) {
P_removeCallback(input: { id: $id }) {
success
}
}
Example response
{
"data": {
"P_removeCallback": {
"success": true
}
}
}