Is there any convenient way to export Neo4j data to csv or GML(for import into Gephi)? I tried to use Gremlin with these command:
g = new Neo4jGraph('~/Documents/neo4j-community-1.9.1/data/graph.db');
g.saveGraphML('Mygraph.xml');
but it returns "null"
I'm not sure what happened exactly... I've got 2 million nodes and 5 million edges in neo4j database,btw.
I know that I can full import Neo4j into Gephi with neo4j-plugin, but maybe the size is too large for that way.. Gephi would hangs when it imported about 300 thousand nodes..
it would be appreciated if any help. Thanks.
cypher-import
command can also export to CSV github.com/jexp/neo4j-shell-tools#cypher-import – Michael Hunger