@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
27 lines (16 loc) • 492 B
Markdown
**Added in:** `@mastra/core@1.4.0`
Deletes a single item from the dataset by ID.
```typescript
import { Mastra } from '@mastra/core'
const mastra = new Mastra({
/* storage config */
})
const dataset = await mastra.datasets.get({ id: 'dataset-id' })
await dataset.deleteItem({ itemId: 'item-id' })
```
**itemId** (`string`): ID of the item to delete.
**result** (`Promise<void>`): Resolves when the item is deleted.