user3499275
user3499275

Reputation: 207

Neo4j json dl import

I'm just getting into Neo4j and I spent a couple hours mapping out some nodes and relationships.

I D/L'd the JSON and I'm trying to move the nodes to another computer, it seems like it should be a pretty simple query, but everything I'm finding about batch import is for csv's and a bit more involved.

Is the just a simple cypher to import the JSON d'l from the local Neo4j server?

Upvotes: 0

Views: 137

Answers (1)

Stefan Armbruster
Stefan Armbruster

Reputation: 39915

Moving a full graph db to another box is most simply done by copying over the data/graph.db directory.

Alternatively you can use neo4j-shell's dump command.

Upvotes: 2

Related Questions