Using startGraph, I can access the default Neo4j database:
graph <- startGraph("http://localhost:7474/db/data")
which points to my default directory C:\Users\XXX\Documents\Neo4j\default.graphdb. I have a second database located at C:\Users\XXX\Desktop\New_DB\New_DB.graphdb. However, I can't figure out how to get startGraph to access that database. I've tried:
graph2 <- startGraph("file://c:/Users/XXX/Desktop/New_DB/New_DB.graphdb")
and other variations, but that doesn't work.
I'm using Neo4j 2.3.1, RNeo4j 1.6.2, Windows 10