Say I have a vertex {first_name, last_name} in the graph database (Neo4j in this case).
I can get any of these properties by extracting them as follows
gv(1).first_name => John gv(1).last_name => Smith
I can get all the properties by doing
gv(1).map
What I'm trying to understand is how to get several properties at the same time (concatenation properties), for example
gv(1).some-magic-here => John Smith
source share