Reputation: 3405
Is there any support for Cypher in Scala to perform operations like insertion, deletion and updation on neo4j nodes?
Upvotes: 2
Views: 524
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