Dear Neo4j developers,
I have two cypher queries that I think should be equivelant:
MATCH (f:CppFunctionDeclaration)WHERE exists (()-[:CppCalls]->(f))and exists (()-[:CppCalls*2..5]->(f))and exists (()-[:CppCallsOverride]->(f))RETURN f.class, f.funct...