Skip to main content

shareGraph()

shareGraph(graphId: string, userId?: string): Promise<SimpleResponse>

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

Share a graph with another user

Parameters

ParameterTypeDescription
graphIdstringGraph ID to share
userId?stringUser ID to share with

Returns

Promise<SimpleResponse>

Confirmation

Example

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

await shareGraph("graph-123", "user-456");