yAsH
yAsH

Reputation: 3405

Cypher support in scala

Is there any support for Cypher in Scala to perform operations like insertion, deletion and updation on neo4j nodes?

Upvotes: 2

Views: 524

Answers (1)

Mikesname
Mikesname

Reputation: 8901

I would recommend AnormCypher:

https://github.com/AnormCypher/AnormCypher

It's a Cypher take on the Anorm lightweight SQL wrapper library in Play 2.0. You still have to write Cypher queries (which isn't a bad thing), but it will make extracting the results very easy.

Upvotes: 6

Related Questions