How to find the top most hierarchy in redisgraph since NOT, IS
keywords are not supported yet. In normal cypher query language we can do this as below.
MATCH (n:Child) WHERE NOT (n)-[:PARENT]->() RETURN (n);
But NOT
keyword is not supported in redisgraph as of now.