I have been looking at Neo4j today and I find it exciting. I wonder if there is web application framework which is highly integrated with Neo4J? Basically I would like to start experimenting with Neo4J and I thought maybe there is obvious choice of web framework and if there is, I would like to try out that too. Do you know any?
相关问题
- Can I parameterize labels and properties on CREATE
- run neo4j with docker-compose - neo4j not accessib
- How to create multiple nodes with cypher in neo4j
- Order by relationship properties neo4j
- How can I specify which relationship type to use a
相关文章
- Swift and Objective-c framework exposes its intern
- Neo4j DATE Data Types
- How can I get the number of nodes of a Neo4j graph
- What is the fully qualified path of the Neo4j data
- Anyone know about Rhomobile?
- State Machine Framework for JBoss/Java? [closed]
- ERROR: iPhone Private Frameworks “No such file or
- Neo4j in Azure mobile services
Well I think with Cypher, any framework is quite easy to use, it's just one REST endpoint you need to hit. I have good experience with using Node.js, Neography/Ruby and of course JDBC over REST/Java.
I would definitely check out the neo4j gem (disclaimer: I'm one of the maintainers). It offers a really rich way to access a neo4j database using
ActiveNode
andActiveRel
models. Not only can you do a lot of the basic things that you can do with a library likeActiveRecord
, but you can easily perform deep queries that take advantage of the power of Neo4j like this:Not only is this a really nice way to write cypher statements in Ruby, but you can also make a part of a query and pass it around to be built up in different places in different ways for DRY querying.