Graph Edges hooks

Hand-written shim. Implementation is generated; see ./graph-edges.gen.

Hooks

useListGraphEdges query

List graph edges.

TypeScript
useListGraphEdges(params?: Omit<ListGraphEdgesParams, | > & { filter?: GraphEdgeFilter; orderBy?: GraphEdgeOrderBy[]; } & GraphEdgeShorthands, options?: QueryOpts<Page<GraphEdge>>)

Types: ListGraphEdgesParams · GraphEdgeFilter · GraphEdgeOrderBy · GraphEdgeShorthands · Page · GraphEdge

useRetrieveGraphEdge query

Get a graph edge by ID.

TypeScript
useRetrieveGraphEdge(id: string, options?: QueryOpts<GraphEdge>)

Types: GraphEdge