Open tomasonjo opened 7 years ago
Can you be more precise pls :) I dont know exactly what apoc returns.
So far we have either algo.shortestPath
which returns the actual nodeIds of each step of the path and we have algo.shortestPaths
which returns the distance to every other node in the graph.
Apoc returns path format, which is basically what you get if you run this query on any data
MATCH p=(a)--(b)
RETURN p LIMIT 1
We had a feature request, that
algo.shortestPath.(stream)
should be able to yield path, like the apoc ones.