I need to find k-shortest paths between two nodes in neo4j.
Settings so far:
I found support for the built-in algorithm for Djikstra, A * using shortestpath, calls to allshortestpath, and APOC procedures, but none of them work for me.
- All this gives a “one / many shortest way to rent weight / path length” and not the best k shortest way
- Giving depth in relation to [: CONNECTED_TO * 1..n] will not help either
I went through the question
Also found this plugin https://github.com/Caleydo/neo4j-kshortestpaths-plugin But he can not figure out how to use it. I can successfully add it to neo4j plugins
Any pointers are welcome
source
share