Interface IEdge
Represents an edge in DSE graph.
Inherited Members
Namespace: Cassandra.DataStax.Graph
Assembly: Cassandra.dll
Syntax
public interface IEdge : IElement, IEquatable<IElement>
Properties
InV
Gets the incoming/head vertex.
Declaration
IGraphNode InV { get; }
Property Value
Type | Description |
---|---|
IGraphNode |
InVLabel
Gets the label of the incoming/head vertex.
Declaration
string InVLabel { get; }
Property Value
Type | Description |
---|---|
string |
OutV
Gets the outgoing/tail vertex.
Declaration
IGraphNode OutV { get; }
Property Value
Type | Description |
---|---|
IGraphNode |
OutVLabel
Gets the label of the outgoing/tail vertex.
Declaration
string OutVLabel { get; }
Property Value
Type | Description |
---|---|
string |