As it is not possible yet to transfer data from Neo4j to Gephi via .graphml- file without loss of information I tried to stream the data. Therefore the Graph Streaming Plugin for Gephi exists here.
Following the instructions and inserting 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
I receive:
Can't read url http://localhost:8080/workspace0?operation=updateGraph as
json: http://localhost:8080/workspace0?operation=updateGraph
What could be the problem?
Thank you in advance!