Hi @Reid
Did you get any chance to try apoc path finding algorithms (https://neo4j.com/labs/apoc/4.4/algorithms/path-finding-procedures/)? Btw, what is the issue with the Cypher path finding method that you are trying to use? Does it take a lot of time? If so, can you provide with some more information about the amount of nodes, rels, model and the configuration of Neo4j?
Hi,
Thanks for sharing some more information about the neo4j configuration. What about the heap_size and pagecache allocation? Because the graph that you have is considered to be a big one, and it is running on Neo4j Community not on Enterprise.
Starts at the Company {id: "abc"} and it expands all relationships of a type Supply_FOR in all directions (either incoming or outgoing) and it gets the entire path until the last leaf node. So basically performs a depth-first-search algorithm while keeping the uniqueness of the relationship type. If this does not satisfy what you want to do, maybe you could revise your model or the requirements. I hope that this answer helps you.