This PR adds support for path-finding on undirected edges. Building an undirected CSR and then performing MS-BFS over this CSR. It can be done both inside named subpaths and outside.
FROM GRAPH_TABLE (pg
MATCH
o = ANY SHORTEST (a:Student WHERE a.id = 0)-[e:know]-{0,2}(b:Student)
COLUMNS (a.id as a_id, b.id as b_id, path_length(o))
)
ORDER BY a_id, b_id;
Fixes #87
This PR adds support for path-finding on undirected edges. Building an undirected CSR and then performing MS-BFS over this CSR. It can be done both inside named subpaths and outside.
Example query: