> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# listDatasetProjects

***

# Function: listDatasetProjects()

```ts theme={null}
function listDatasetProjects(options: object): Promise<DatasetProject[]>;
```

Defined in: [src/utils/datasets.ts](https://github.com/rungalileo/galileo-js/blob/main/src/utils/datasets.ts)

Lists all projects that use a dataset.
Delegates to Datasets.listProjects().

## Parameters

### options

The options used to locate the dataset.

#### datasetId?

`string`

(Optional) The ID of the dataset.

#### datasetName?

`string`

(Optional) The name of the dataset.

#### limit?

`number`

(Optional) The maximum number of projects to return.

## Returns

`Promise`\<[`DatasetProject`](/sdk-api/typescript/reference/types/type-aliases/DatasetProject)\[]>

A promise that resolves to the list of projects that use the dataset.
