0

Is it possible to import a database as GraphML XML-File in embedded Neo4j with Java? I tried to run the following script but without any success:

g.loadGraphML('graphMlFileLocation')

I'm unable to use the Script-Engine described here

Is there another way to import GraphML XML-Files?

Best Regards Max.

droiddude
  • 177
  • 4
  • 15

1 Answers1

1

You can do it via Java by using GraphMLReader

http://www.tinkerpop.com/docs/javadocs/blueprints/2.3.0/com/tinkerpop/blueprints/util/io/graphml/GraphMLReader.html

Marko A. Rodriguez
  • 1,702
  • 12
  • 13