listGraphs()
listGraphs(
options?:ListGraphsOptions):Promise<Graph[]>
Defined in: packages/core/src/index.ts:1100
List all graphs for the current user
Parameters
| Parameter | Type | Description |
|---|---|---|
options? | ListGraphsOptions | Pagination options |
Returns
Promise<Graph[]>
Array of graphs
Example
import { listGraphs } from "@cpod/sdk";
const graphs = await listGraphs({ page: 1, limit: 10 });