Getting started with neo4j

后端 未结 2 1534
太阳男子
太阳男子 2021-02-04 21:09

I am completely new to neo4j and I am very sorry for asking such a basic question. I have installed neo4j, I am using the shell \"localhost:7474/webadmin/#/console/\" I am look

相关标签:
2条回答
  • 2021-02-04 21:27

    One of the virtues of Neo4J is the excellent documentation and learning material it provides (especially compared to other Graph enabled DBs).

    As mentioned, starting with The Cypher Tutorial is a good starting point.

    Then, as you learn the basics, check out The Neo4J Manual which has detailed documentation on each and every Cypher language command (as well as many other interesting stuff).

    Finally, when you start doing your own queries, keep close a copy of the Cypher Cheat Sheet which summarizes all the commands.

    You can even take a look at Cypher without installing or running Neo4J server, just going to the Neo4J Console and test your queries online (and even create links to them).

    Caveat: when you start reading you may encounter with Gremlin, which is a common graph query language supported by Neo4J. Is quite awkward and very different from Cypher, so if you are going with Neo4J, you should stick to Cypher, it has more features and most of the development is made against it.

    0 讨论(0)
  • 2021-02-04 21:32

    Cypher is your friend (there are several samples on this page): http://www.neo4j.org/learn/cypher

    Check out the Cypher-specific webinars: http://watch.neo4j.org/

    And finally, the Cypher cheatsheet: http://neo4j.org/resources/cypher

    0 讨论(0)
提交回复
热议问题