You have a couple of options to inspect your converted data.
Java REST server
Download and install the Neo4j server. Connect to it via http://localhost:7474
. Launch a cypher query to inspect your data. E.g. START n=node(*) RETURN n;
.
Java embedded server
You could write a small java application that connects to your data directory. E.g.
public static void main(String[] args) throws Exception {
final GraphDatabaseService graphDb = new GraphDatabaseFactory().newEmbeddedDatabase("db");
final ExecutionEngine engine = new ExecutionEngine(graphDb);
System.out.println(engine.execute("START n=node(*) RETURN n").dumpToString());
graphDb.shutdown();
}
target/graph.db
to your/path/to/server/data/graph.db
or you can editconf/neo4j-server.properties
to specify the full path to your created db as store-location. But move it somewhere else as the target directory will be cleaned whenever you runmvn clean
– Michael Hunger