Interface IPath
A Path
is a directed sequence of relationships between two nodes. This generally represents a
traversal or walk through a graph and maintains a direction separate from that of any relationships
traversed. It is allowed to be of size 0, meaning there are no relationships in it. In this case, it contains only a
single node which is both the start and the end of the path.
public interface IPath : IEquatable<IPath>
- Inherited Members
- Extension Methods
Properties
- Nodes
Gets all the nodes in the path.
- Relationships
Gets all the relationships in the path.