deleteNotificationRecipient
Delete a notification recipient.
deleteNotificationRecipient(
input: DeleteNotificationRecipientInput
): DeleteNotificationRecipientPayload!
Example
- Query
- Variables
- Response
mutation ($input: DeleteNotificationRecipientInput) {
deleteNotificationRecipient(input: $input) {
deleted
}
}
{
"input": {
"notificationRecipientId": 42,
"organizationId": 42
}
}
{
"data": {
"deleteNotificationRecipient": {
"deleted": true
}
}
}
Arguments
deleteNotificationRecipient.input ● DeleteNotificationRecipientInput input common
The notification recipient to delete.
Type
DeleteNotificationRecipientPayload object common
The result of deleting a notification recipient.