Cypher Statement
You can type Cypher directly into the Cypher editor. However, it is more common to copy / paste existing Cypher that you want to troubleshoot into the Cypher editor. The image below shows a Cypher statement that has been pasted into the editor.
Feel free to copy the following Cypher statement and paste into the editor to try it out.
MATCH (:Station { name: 'Denmark Hill' })<-[:CALLS_AT]-(d:Stop)
((:Stop)-[:NEXT]->(:Stop)){1,3}
(a:Stop)-[:CALLS_AT]->(:Station { name: 'Clapham Junction' })
RETURN d.departs AS departureTime, a.arrives AS arrivalTime