Hi there
(cross-posting from SO)
I'm trying to get all vertices up to a certain maximum cumulative weight (distance) from a specific node. The query
MATCH route = (p1:ReferencePlace) - [roadlist:EROAD*..5] - (p2:ReferencePlace)
WITH p1, p2, route, ro...