I intend to find the path between two nodes:
MATCH (x:Column {name:'colA', schema:'a.b'})-[cd:CD*1..]->(y:Column {name:'colB', schema:'c.d'})
RETURN x,y;`
and the explain is illustrated below:
After executing the above cypher, it looks like stuck forever without returning anything. I think the culprit is the VarLengthExpand phase, the Neo4j version is enterprise-3.4.0
, any suggestions? Thanks.