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