I just started using Memgraph and I sometimes encounter the error message: "Not yet implemented: atom expression" . First I observed it when trying to use the neo4j-OGM and now I encounter it when checking for relations in a query.
My query looks like this:
memgraph> match(n {nameAST: "CallExpression"})
match(m) where not (n)-[:CG]->(m) and m.nameParseTree =~ n.nameParseTree
return n;
Client received exception: Not yet implemented: atom expression '(n)-[:CG]->(m)'
Any help here? How can I circumvent this error?