(vertexId: ElementId)
| 480 | } |
| 481 | |
| 482 | public *getOutgoingEdges(vertexId: ElementId): Iterable<Edge<TSchema, any>> { |
| 483 | for (const data of this.#config.storage.getOutgoingEdges(vertexId)) { |
| 484 | yield this.instantiateEdge<any>(data); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * Add a vertex to the graph. |
nothing calls this directly
no test coverage detected