Hello,
I have a pretty simple graph for transportation:1 type of nodes connected by either one of the 2 relationships I have (A and B).
I need to find the shortest path between 2 nodes, I use A* and I created a graph using `CALL gds.graph.project`.
W...