> Discover all available pages from the documentation index: https://mastra.zisheng.pro/ko/llms.txt # DatasetsManager.get() **추가된 항목:** `@mastra/core@1.4.0` ID로 기존 데이터 세트를 조회합니다. 데이터 세트가 존재하지 않으면 `MastraError`를 던집니다. ## 사용예 ```typescript import { Mastra } from '@mastra/core' const mastra = new Mastra({/* storage config */}) const dataset = await mastra.datasets.get({ id: 'dataset-id' }) // Now use the dataset const details = await dataset.getDetails() console.log(details.name) ``` ## 매개변수 **id** (`string`): 데이터 세트의 고유 식별자입니다. ## 보고 데이터 세트를 찾을 수 없으면 `MastraError`를 던집니다. **result** (`Promise`): Dataset 인스턴스입니다.