deleteNotification
Mutation
mutation deleteNotification($notificationId: ID!) {
  deleteNotification(notificationId: $notificationId) {
    status
  }
}
Variables
{
  "notificationId": "4"
}
Response
{
  "data": {
      "deleteNotification": {
          "status": "failed"
      }
  }
}