Ok so with a tinkerGraph the map property of the vertex silently links the property map? That would make sense.
This is slightly off topic then but is there a way of displaying a vertex along with it's property map? A single request that would output id and properties.
When I use my client with rexpro on a TinkerGraph when running "g.v(2)" for example I will get something along the lines of:
array(
[_id]=>2,
[_type]=>vertex,
[_properties]=>array( [name]=>'marko' )
)
The same query on a neo4jGraph will return:
array(
[_id]=>2,
[_type]=>vertex
)
Without the _properties even though they are defined and can be found with ".map()". Is there a way of getting the property map along side the other information for neo4j graphs?
Thanks again.