hasNext

Determine if results are available from a traversal.

The hasNext() step is a terminal step that does not return a traversal; instead, this step executes the traversal and returns a result. It determines whether there are available results from a traversal and returns a Boolean value of true or false.

Synopsis

hasNext()
Table 1. Legend
Syntax conventions Description
Lowercase and uppercase Literal keyword. Includes ().
Italics Variable value. Replace with a user-defined value.
[] Optional. Square brackets ( [] ) surround optional command arguments. Do not type the square brackets.
{} Group. Braces ( {} ) identify a group to choose from. Do not type the braces.
| Or. A vertical bar ( | ) separates alternative elements. Type any one of the elements. Do not type the vertical bar.
... Repeatable. An ellipsis ( ... ) indicates that you can repeat the syntax element as often as required.

Examples

// determines whether there are available results
g.V().hasLabel('book').hasNext()