(
...labels: TVertexLabel[]
)
| 431 | } |
| 432 | |
| 433 | public *getVertices<TVertexLabel extends VertexLabel<TSchema>>( |
| 434 | ...labels: TVertexLabel[] |
| 435 | ): Iterable<Vertex<TSchema, TVertexLabel>> { |
| 436 | for (const data of this.#config.storage.getVertices(labels)) { |
| 437 | yield this.instantiateVertex<TVertexLabel>(data); |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | /** |
| 442 | * Get an edge by its id. |
no test coverage detected