deleteNotificationSubscription
Delete a notification subscription.
deleteNotificationSubscription(
input: DeleteNotificationSubscriptionInput
): DeleteNotificationSubscriptionPayload!
Example
- Query
- Variables
- Response
mutation ($input: DeleteNotificationSubscriptionInput) {
deleteNotificationSubscription(input: $input) {
deleted
}
}
{
"input": {
"notificationSubscriptionId": 42
}
}
{
"data": {
"deleteNotificationSubscription": {
"deleted": true
}
}
}
Arguments
deleteNotificationSubscription.input ● DeleteNotificationSubscriptionInput input common
The notification subscription to delete.
Type
DeleteNotificationSubscriptionPayload object common
The result of deleting a notification subscription.