shareGraph()
shareGraph(
graphId:string,userId?:string):Promise<SimpleResponse>
Defined in: packages/core/src/index.ts:1161
Share a graph with another user
Parameters
| Parameter | Type | Description |
|---|---|---|
graphId | string | Graph ID to share |
userId? | string | User ID to share with |
Returns
Promise<SimpleResponse>
Confirmation
Example
import { shareGraph } from "@cpod/sdk";
await shareGraph("graph-123", "user-456");