> 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/012_documents/012__empty_user_trash.md).

# Empty User Trash

GraphQL endpoint: `/user`

Permanently deletes everything in the calling user's trash. Takes no arguments — it always covers the whole trash rather than a filtered view of it — and the files leave storage as well.

## Query

```graphql
mutation {
  emptyUserTrash {
    status
    count
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "emptyUserTrash": {
      "count": 2,
      "status": "OK"
    }
  }
}
```
