【发布时间】:2017-09-27 08:09:39
【问题描述】:
我正在使用apoc.gephi.add 运行以下查询,以在Gephi 中显示来自Neo4j 的数据。
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 *
在Gephi 中,我可以看到nodes 和relationships 的类型,但在Gephi 中我看不到nodes 或properties 的properties (查看Data laboratory)。
有什么想法吗?
【问题讨论】:
标签: neo4j gephi neo4j-apoc