Cypher Query with Match -


a newbie here on neoj4. have following cypher query.

match (from {station_code: "pnt" }), (to { station_code: "met"}) , path = (from) - [ :route*]->(to) return path shortestpath, reduce(traveltime = 0, r in relationships(path) | traveltime+r . traveltime) totaltime order totaltime asc limit 1 

get error message

"with required between create , match" 


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -