* Add an edge between two vertices. * @param outV The source vertex (where the edge originates from). * @param label The label of the edge. * @param inV The target vertex (where the edge points to). * @param properties The properties of the edge.
(
outV: ElementId | Vertex<TSchema, any>,
label: TEdgeLabel,
inV: ElementId | Vertex<TSchema, any>,
properties: EdgeProperties<TSchema, TEdgeLabel>,
)
| 199 | * @param properties The properties of the edge. |
| 200 | */ |
| 201 | addEdge<TEdgeLabel extends EdgeLabel<TSchema>>( |
| 202 | outV: ElementId | Vertex<TSchema, any>, |
| 203 | label: TEdgeLabel, |
| 204 | inV: ElementId | Vertex<TSchema, any>, |
no outgoing calls