cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

How do I write a query?

How do I write a query?

1 ACCEPTED SOLUTION

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

View solution in original post

1 REPLY 1

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