I'm running the following query using apoc.gephi.add
to display data from Neo4j
in Gephi
.
MATCH path = (pr1:Person)-[*0..2]->(pr2:Person)
WHERE pr1.id={id1} AND pr2.id={id2} AND pr1.id<>pr2.id
CALL apoc.gephi.add ('http://localhost:8091', 'workspace', path)
YIELD nodes, relationships ,properties
RETURN *
In Gephi
I'm able to see the Type of the nodes
and relationships
, but I'm not able to see the properties
of the nodes
or properties
in Gephi
(looking in the Data laboratory
).
Any ideas?