Start a Traversal

All traversal based queries must start with a V() command, starting the travalers on the vertices of the graph.

.V([ids])

Start query from Vertex

G.V()

Returns all vertices in graph

G.V(["vertex1"])

Returns:

{"_id" : "vertex1", "_label":"TestVertex"}