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
Post a Comment