kuzu
kuzu copied to clipboard
WITH WHERE scoping rules
In Cypher, it seems that WITH <...> WHERE <...>
share the same scope. For example,
MATCH (p:Person)
WITH p.name AS pname
WHERE p.age > 30
RETURN pname
is a valid query because p is in the scope of WHERE. Kuzu currently doesn't identify this: