Reputation: 6281
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
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:
Upvotes: 2