rahulg
rahulg

Reputation: 2249

Does neo4j have all the proper apis and support for all the mentioned drivers?

I used Node js for my webapp and I wanted to create a new user with unique email ID and hence that required me to look up the index table but then I realised that the Node Driver doesn't have the index() function as the one in Java( graphDb.index() ). Any work around for such an issue, like using REST or some Cypher connetor

Upvotes: 1

Views: 61

Answers (1)

Slater Victoroff
Slater Victoroff

Reputation: 21914

Neo4j just so happens to have a wonderful REST API that should work for your application. The docs for the api are detailed here:

http://docs.neo4j.org/chunked/milestone/rest-api.html.

It even has an entire section devoted to indexing.

Upvotes: 3

Related Questions