Interface ITraversal
Represents the basic information for a walk over a graph.
public interface ITraversal : IEnumerator
- Inherited Members
Properties
Bytecode
Gets the Bytecode representation of this traversal.
Bytecode Bytecode { get; }
Property Value
- See Also
-
ITraversal<TStart, TEnd>
IsAnonymous
Determines if this traversal was spawned anonymously or not.
bool IsAnonymous { get; }
Property Value
- See Also
-
ITraversal<TStart, TEnd>
Traversers
Gets or sets the Traverser's of this traversal that hold the results of the traversal.
IEnumerable<Traverser>? Traversers { get; set; }
Property Value
- See Also
-
ITraversal<TStart, TEnd>
Methods
Iterate()
Iterates all Traverser instances in the traversal.
ITraversal Iterate()
Returns
- ITraversal
The fully drained traversal.
- See Also
-
ITraversal<TStart, TEnd>
See Also
ITraversal<TStart, TEnd>