Interface IPath
Represents a walk through a graph as defined by a traversal.
Namespace: Cassandra.DataStax.Graph
Assembly: Cassandra.dll
Syntax
public interface IPath
Properties
Labels
Gets the sets of labels of the steps traversed by this path, or an empty list, if this path is empty.
Declaration
ICollection<ICollection<string>> Labels { get; }
Property Value
Type | Description |
---|---|
ICollection<ICollection<string>> |
Objects
Gets the objects traversed by this path, or an empty list, if this path is empty.
Declaration
ICollection<IGraphNode> Objects { get; }
Property Value
Type | Description |
---|---|
ICollection<IGraphNode> |