(vertexId: ElementId)
| 474 | } |
| 475 | |
| 476 | public *getIncomingEdges(vertexId: ElementId): Iterable<Edge<TSchema, any>> { |
| 477 | for (const data of this.#config.storage.getIncomingEdges(vertexId)) { |
| 478 | yield this.instantiateEdge<any>(data); |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | public *getOutgoingEdges(vertexId: ElementId): Iterable<Edge<TSchema, any>> { |
| 483 | for (const data of this.#config.storage.getOutgoingEdges(vertexId)) { |
nothing calls this directly
no test coverage detected