Edge<'V, 'E> Type
Represents an edge of a graph.
Instance members
| Instance member |
Description
|
|
Returns source vertex of the edge. For undirected graphs, this is the first vertex that was added to the edge.
|
Full Usage:
this.HasLabel
Returns: bool
|
Returns true if the edge has a label. When this is true, `Label` should not raise `DummyDataAccessException`.
|
Full Usage:
this.Label
Returns: 'E
|
Returns the label of the edge. This can raise `DummyDataAccessException` when the edge has no label.
|
|
Returns target vertex of the edge. For undirected graphs, this is the second vertex that was added to the edge.
|
B2R2