> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/013_notifications/006__mark_all_notifications_as_read.md).

# Mark All Notifications As Read

GraphQL endpoint: `/user`

Marks every unread notification belonging to the caller as read.

## Query

```graphql
mutation {
  markAllNotificationsAsRead {
    status
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "markAllNotificationsAsRead": {
      "status": "OK"
    }
  }
}
```
