Getting started with neo4j

I am completely new to neo4j and I am very sorry to ask such a basic question. I installed neo4j, I use the shell "localhost: 7474 / webadmin / # / console /" I am looking for a good example that uses some shell commands to read from an existing graph database, go through, change, ... and then execute some queries to get to know her. I don’t want to use Java or Python, all I want are some command line examples that will let me learn neo4j. I searched a lot, but could not find a good code example, except for one matrix example. I appreciate any help.

+4
source share
2 answers

One of the strengths of Neo4J is its excellent documentation and the training materials it provides (especially when compared to other included DB graphics).

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

Then, when you learn the basics, see the Neo4J Handbook for detailed documentation for each Cypher language team (as well as many other interesting things).

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

You can even take a look at Cypher without installing or starting the Neo4J server, simply by going to the Neo4J Console and test your requests on the Internet (and even create links to them).

Caveat: when you start reading, you may come across Gremlin , which is a common graph query language supported by Neo4J. This is quite inconvenient and very different from Cypher, so if you are coming with Neo4J you have to stick with Cypher, it has more features, and most of the development is done against it.

+4
source

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

Check out Cypher related webinars: http://watch.neo4j.org/

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

+1
source

All Articles