valueMap
Yields a map representation of the properties of an element.
Synopsis
valueMap()
Description
The valueMap()
step yields a map representation of the properties of an element.
Examples
Get a map of the properties and their values for Jane Doe:
g.V().has('person', 'name', 'Jane Doe').valueMap()
Get a map of the properties and their values for the outgoing edges from Jane Doe:
g.V().has('person', 'name', 'Jane Doe').outE().valueMap()