properties
Retrieve properties of a specified element.
Synopsis
properties( [ 'property\_name', ... ] )
Description
The properties()
step retrieves the properties of the specified element.
Examples
Find the properties of Julia Child:
g.V().has('person','name','Julia Child').properties()
Find the countries that Julia Child has lived in:
g.V().has('person','name','Julia Child').properties('country')