Async iterable method implementation.
OptionalsideEffects: any[]Internal_Async results stream set by RemoteStrategy
OptionalsideGets the trailing response status from the server. Available after the traversal has been fully iterated (via toList(), iterate(), or manual iteration). Returns null if the traversal has not completed.
Determines if there are any more items to iterate from the traversal.
Iterates all Traverser instances in the traversal.
Returns the next result from the traversal.
When called without an argument, returns a Promise that resolves to an iterator item ({value, done}), following the async iterator protocol.
When called with an amount, returns a Promise that resolves to an Array containing up to {@code amount} result values. The Array form is always used when an amount is supplied, including {@code next(1)}, which resolves to an Array of one value rather than a bare value, matching the behavior of next(n) in the other Gremlin language variants. If fewer results remain, the Array contains only those that remain, and an amount of zero or less yields an empty Array.
Returns the next result from the traversal.
When called without an argument, returns a Promise that resolves to an iterator item ({value, done}), following the async iterator protocol.
When called with an amount, returns a Promise that resolves to an Array containing up to {@code amount} result values. The Array form is always used when an amount is supplied, including {@code next(1)}, which resolves to an Array of one value rather than a bare value, matching the behavior of next(n) in the other Gremlin language variants. If fewer results remain, the Array contains only those that remain, and an amount of zero or less yields an empty Array.
The number of results to retrieve.
Returns step instructions during JSON serialization
Returns the GremlinLang representation of the traversal
Represents a traversal as a result of a RemoteConnection submission.