drop
Drop a traversal object.
Synopsis
drop()
Description
The drop()
step is a map/sideEffect.
Appending drop()
to any traversal will drop the preceding objects from the graph.
Examples
Drop all outgoing edges from all vertices:
g.V().outE().drop()
Drop the property key name from all vertices; the values stored for the property will also be dropped from the graph.
g.V().properties('name').drop()
Drop all vertices from a graph:
g.V().drop()