I watched the video by adam cowley
Neo4j Graph Database Platform – 21 Nov 18
Journey Planning... And Why I Love Cypher
Discover how Neo4j's graph database query language, Cypher, was used to create a reliable journey-pla...
I am trying to profile a query in Neo4j Cypher.
I started from this query:
PROFILE MATCH (t1:Trip{Direction:1, Route:"01"}),(t2:Trip{Direction:0, Route:"01"})
WITH t1, t2 LIMIT 1
MATCH p4 = (t2)−[:STARTS|STOPS|ENDS]−>(:BusStop), p3=(t1)−[...
Hi thank you for your reply. The presentation was great. I will look into the links. I am trying to do something similar to what you have already done but for buses only. I came across your project and was looking to having further details, especiall...
ameyasoft:
MATCH p=(c:Airport)-[:ROUTE*]->(l:Airport)
WHERE c.city = "Chicago" and l.city = "Los Angeles"
RETURN p as shortestPath, reduce(time=0, r in relationships(p) | time+r.time) AS totalTime ORDER BY totalTime ASC LIMIT 1;
Does this quer...