lorraine batol
lorraine batol

Reputation: 6281

neo4j - is there a library for Rest API Transactional

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-binding , and haven't had luck. Or maybe I'm missing something.

Any help will be appreciated.

TIA

Upvotes: 1

Views: 116

Answers (1)

Kenny Bastani
Kenny Bastani

Reputation: 3308

Yes, take a look at the Neo4j JDBC driver that implements the Neo4j 2.0 transactional HTTP endpoint.

https://github.com/neo4j-contrib/neo4j-jdbc/tree/2.0

The source code for the implementation of the transactional endpoint can be found here:

https://github.com/neo4j-contrib/neo4j-jdbc/blob/95ee4282674af4798a61d2f5c67234e3a5f95b84/src/main/java/org/neo4j/jdbc/rest/TransactionalQueryExecutor.java

Upvotes: 2

Related Questions