Table of Contents

Interface IPath

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

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

End

Gets the end INode in the path.

Nodes

Gets all the nodes in the path.

Relationships

Gets all the relationships in the path.

Start

Gets the start INode in the path.