我使用apoc.gephi.add
运行以下查询,以显示Neo4j
中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 *
在Gephi
我能够看到nodes
和relationships
的类型,但我无法看到properties
的{{1}} nodes
中的properties
或Gephi
(查看Data laboratory
)。
有什么想法吗?
答案 0 :(得分:0)
apoc.gephi.add过程有另外两个可选参数:weight属性和属性。
您想要的是属性:它是您要为gephi提供的所有属性的列表。基本上,apoc什么都没有。 你可以使用&#39;添加&#39;像这样 : CALL apoc.gephi.add(&#39; http://localhost:8091&#39;,&#39;工作空间&#39;,路径,[&#39; prop1&#39;,&#39; prop2&#39; ...])
更多详情here。
如果你想了解更多关于neo4j和gephi this is a good tutorial的信息,还可以了解如何使用权重属性,这是制作相关图表的一个非常酷的功能。