Skip to main content

listGraphs()

listGraphs(options?: ListGraphsOptions): Promise<Graph[]>

Defined in: packages/core/src/index.ts:1100

List all graphs for the current user

Parameters

ParameterTypeDescription
options?ListGraphsOptionsPagination options

Returns

Promise<Graph[]>

Array of graphs

Example

import { listGraphs } from "@cpod/sdk";

const graphs = await listGraphs({ page: 1, limit: 10 });