Create a copy of other path.
Create a path from a Value.
Create a Path using the given mg_path.
Create a Path from a copy of the given mg_path.
Returns the vertex at the given index. index should be less than or equal to length of the path.
Returns the edge at the given index. index should be less than length of the path.
Returns the orientation of the edge at the given index. index should be less than length of the path. Return: True if the edge is reversed, false otherwise.
Returns the path length. Length of the path is number of edges.
Compares this path with other. Return: true if same, false otherwise.
Return a printable string representation of this path.
Represents a sequence of alternating nodes and relationships corresponding to a walk in a labeled property graph.
A path of length L consists of L + 1 nodes indexed from 0 to L, and L unbound relationships, indexed from 0 to L - 1. Each relationship has a direction. A relationship is said to be reversed if it was traversed in the direction opposite of the direction of the underlying relationship in the data graph.