Is this cypher-query correct? I am trying to find the shortest path between two nodes based on the node-IDs:
MATCH (martin:RoadNode {id:16814}),(oliver:RoadNode {id:16820}),
p = shortestPath((martin)-[*..15]-(oliver))
RETURN p
It does execute without error, but it returns 0 rows, although I expect it to find a path.