* Get a specific edge by its unique identifier. * @param id The id of the edge. * @param options.throwIfNotFound If true, throws EdgeNotFoundError instead of returning undefined.
(
id: ElementId,
options: { throwIfNotFound: true },
)
| 159 | * @param options.throwIfNotFound If true, throws EdgeNotFoundError instead of returning undefined. |
| 160 | */ |
| 161 | getEdgeById<TEdgeLabel extends EdgeLabel<TSchema>>( |
| 162 | id: ElementId, |
| 163 | options: { throwIfNotFound: true }, |
| 164 | ): Edge<TSchema, TEdgeLabel>; |
no outgoing calls
no test coverage detected