> For the complete documentation index, see [llms.txt](https://developer.konverse.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.konverse.ai/platform/embedded-functions/query-a-dataset.md).

# Query a Dataset

Our platform lets you create [Datasets](/platform/datasets.md), and embedded functions and query a dataset.&#x20;

```
let ds = await ctx.dataset.find("Dataset Name", {id : 1});
```

To fetch all rows from a dataset

```
let ds = await ctx.dataset.find("Dataset Name", {});
```
