* Get a specific vertex by its unique identifier. * @param id The id of the vertex. * @param options.throwIfNotFound If true, throws VertexNotFoundError instead of returning undefined.
(
id: ElementId,
options: { throwIfNotFound: true },
)
| 137 | * @param options.throwIfNotFound If true, throws VertexNotFoundError instead of returning undefined. |
| 138 | */ |
| 139 | getVertexById<TVertexLabel extends VertexLabel<TSchema>>( |
| 140 | id: ElementId, |
| 141 | options: { throwIfNotFound: true }, |
| 142 | ): Vertex<TSchema, TVertexLabel>; |
no outgoing calls
no test coverage detected