How do I write a query?
Cypher is Neo4j's query language.
It is similar to SQL but has some great extensions.
One is graph patterns which are visual representations of connected data, like
(:Person {name:"Michael"})-[:WORKS_AT]->(:Company {name:"Neo4j"})
After you have installed Neo4j Desktop and created a database, you can run queries through Neo4j Browser (or later through cypher-shell)
read more about Cypher here:
and take the online course here