> For the complete documentation index, see [llms.txt](https://docs.graphlit.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.graphlit.dev/api-guides/use-cases/collections/collection-delete.md).

# Delete Collection

## User Intent

"How do I delete a collection? Show me collection cleanup."

## Operation

**SDK Method**: `deleteCollection()`\
**Use Case**: Remove collection

***

## Code Example (TypeScript)

```typescript
import { Graphlit } from 'graphlit-client';

const graphlit = new Graphlit();

// Delete collection
await graphlit.deleteCollection('collection-id');

console.log('Collection deleted');
```

***

## Important

**Content in collection is NOT deleted**\
**Only collection organization is removed**\
**Content remains accessible**

***
