无法从Neo4j

时间:2017-09-27 08:09:40

标签: neo4j gephi neo4j-apoc

我使用apoc.gephi.add运行以下查询,以显示Neo4jGephi的数据。

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我能够看到nodesrelationships的类型,但我无法看到properties的{​​{1}} nodes中的propertiesGephi(查看Data laboratory)。

有什么想法吗?

1 个答案:

答案 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的信息,还可以了解如何使用权重属性,这是制作相关图表的一个非常酷的功能。