Table of Contents

Interface ITraversal

Namespace
Gremlin.Net.Process.Traversal
Assembly
Gremlin.Net.dll

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

Bytecode
See Also
ITraversal<TStart, TEnd>

IsAnonymous

Determines if this traversal was spawned anonymously or not.

bool IsAnonymous { get; }

Property Value

bool
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

IEnumerable<Traverser>
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>