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.

zhiyizhou1995
Node
since ‎06-18-2021
‎06-01-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

hello Does anyone know why the function reduce like following returns all the path between two noeds, not the only path with the shortest time? match (a:station {name:"Mermoz"}),(b:station{name:"Brombach"}), p=((a)-[*..10]->(b)) with p,reduce(s=0,r i...
hello, I have created a little traveling line for the bus like following I want to get the shortest time path between "start" and "fin" with the function reduce, I hope to calculate the sum of running time(temps), and when it changes the bus, we add...