Hi, i am using neo4j combined with gephi for visualization. This works ok but i cannot manage to stream node properties to gephi (only some basic data is streamed) .
My cypher query in neo looks like :
match path = (:Location)
WITH path LIMIT 1000
with collect(path) as paths
call apoc.gephi.add(null,'workspace1', paths) yield nodes, relationships
return nodes, relationships
The :Location labelled nodes have several properties amongst others a lat and lon value
So how can i extend this query so that (for example) the "lat" and "lon" property from the :Location labelled nodes are also streamed ?
Thanks Koen