I am using neo4j-java-rest-binding and neo4j 1.6.1 community edition.
I need to know, how to create a java-rest-api binding instance for GraphDatabaseService?
for embedded api, we define it like this
GraphDatabaseService graphDb = new EmbeddedGraphDatabase( "var/graphDb" );
What should be the equivalent code for java rest api?