Neo4j java rest binding

2014-05-14T16:25:29

I am trying to get more familiar with the java-rest-binding (https://github.com/neo4j/java-rest-binding).

My main question is what operations of the GraphDatabaseService supports.

For example I read here that GlobalGraphOperation are not supported, but the tests use them. I have the final release (2.0.1). In adittion to this I would like to know if there is a significant defference between

GraphDatabaseService gds = new RestGraphDatabase("http://localhost:7474/db/data"); 

and

RestAPI restAPI = new RestAPIFacade("http://localhost:7474/db/data");` 

or it's the same way to connect to the neo4j server.

Copyright License:
Author:「salvador」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/23649317/neo4j-java-rest-binding

About “Neo4j java rest binding” questions

I am trying to get more familiar with the java-rest-binding (https://github.com/neo4j/java-rest-binding). My main question is what operations of the GraphDatabaseService supports. For example I...
I want to use neo4j in rest way with Java. In this case, should I use java-rest-binding(https://github.com/neo4j/java-rest-binding)? I cannot find javadoc comments in the source code, so where can...
I use Java REST binding of Neo4j on my project, but I face a problem on handling transactions. When the name is Error, it can success insert node into DB..., event if I take off Transaction contro...
I am trying to get the project from github to work. It can be found here: https://github.com/neo4j/java-rest-binding Has anyone put this into a JAR already? I am to connect to a local neo4j store...
Can anyone help me to understand the different projects that are available related to neo4j.I can see there are a lot of projects for ex. Java REST binding, Spring data neo4j, etc. What is the exact
I am currently using the neo4j java-rest-binding project to try and make the client code the same for embedded and remote databases, which is highly desirable for me. But I am currently having tro...
I have no problem with this cypher request : MATCH user-[r:OWE_TO*]->final WHERE user.name="toto" AND user.name <> final.name AND r[0].value=r[length(r)-1].value RETURN final.n...
Is there an existing library that I can use that has the functionality: http://docs.neo4j.org/chunked/milestone/rest-api-transactional.html I've looked into https://github.com/neo4j/java-rest-bin...
I have a simple relationship test that I am trying to run to create a unique node using Rest API (java-rest-binding) https://github.com/neo4j/java-rest-binding but unfortunately I am stuck on somet...
I have an application which uses neo4j embedded database. Now, I want to migrate to neo4j server as I need to integrate this application with a web app (using servlets, tomcat). I want to change the

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.