从Neo4j到Gephi的流数据 - 无法读取url

问题描述 投票:3回答:1

由于还不可能通过.graphml文件将数据从Neo4j传输到Gephi而不丢失信息,我试图传输数据。因此,Gephi的Graph Streaming Plugin存在here

按照说明并插入Cypher-Code:

match path = (:p)-[:r]->(:m)
WITH path LIMIT 1000
with collect(path) as paths
call apoc.gephi.add(null,'workspace0', paths) yield nodes, relationships, time
return nodes, relationships, time

我收到:

Can't read url http://localhost:8080/workspace0?operation=updateGraph as 
json: http://localhost:8080/workspace0?operation=updateGraph

可能是什么问题呢?

先感谢您!

neo4j gephi graphml
1个回答
0
投票

对于遇到类似问题的人来说,将Gephi(0.92)的语言改为英语解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.