(
...labels: TEdgeLabel[]
)
| 466 | } |
| 467 | |
| 468 | public *getEdges<TEdgeLabel extends EdgeLabel<TSchema>>( |
| 469 | ...labels: TEdgeLabel[] |
| 470 | ): Iterable<Edge<TSchema, TEdgeLabel>> { |
| 471 | for (const data of this.#config.storage.getEdges(labels)) { |
| 472 | yield this.instantiateEdge<TEdgeLabel>(data); |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | public *getIncomingEdges(vertexId: ElementId): Iterable<Edge<TSchema, any>> { |
| 477 | for (const data of this.#config.storage.getIncomingEdges(vertexId)) { |
no test coverage detected