Hello,
I am pretty new to Neo4j and Cypher. From my understanding, when using variable length pattern matching, Neo4j uses DFS by default.
I have the following query:
MATCH path = (u:Egg {name: "RootEgg"})-[:Mutation1|Mutation2*0..]->(c:Egg) RETURN c...