> 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/002_company/011_documents/012__empty_company_trash.md).

# Empty Company Trash

GraphQL endpoint: `/company`

Permanently deletes everything in the calling company'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 {
  emptyCompanyTrash {
    status
    count
  }
}

```

## Variables

```json
{}
```

## Response

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