Support subquery EXISTS.
sample:
qry = """
MATCH (A)
where A EXISTS {
MATCH (A) --> (B)
where B EXISTS {
MATCH (B)
where B.age > 40
}
}
RETURN ID(A)
"""
e1e6053
4 days ago
by khoale88
+0.01%
support NOT EXISTS
8101cbc
3 days ago
by khoale88
+0.01%
introduce executor._doublecheck_hint_result.
- check if node and edge from hints are valid matches