We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for more complex join patterns, such as combining the result of a quantified path pattern with more joins For example:
MATCH o = ANY SHORTEST (p:Person)-[w:knows]-> {1,3}(p2:Person)-[i:hasInterest]->(t:Tag)
Which is equivalent to
MATCH o = ANY SHORTEST (p:Person)-[w:knows]->{1,3}(p2:Person), (p2:Person)-[i:hasInterest]->(t:Tag)
Which can be broken down into two subqueries. The result of this is joined on the common node, which is (p2:Person) in this case.
(p2:Person)
The text was updated successfully, but these errors were encountered:
Implemented as of #69
Sorry, something went wrong.
Merge pull request #62 from samansmink/update-duckdb
069cfc4
update duckdb to v0.10.1
No branches or pull requests
Add support for more complex join patterns, such as combining the result of a quantified path pattern with more joins
For example:
Which is equivalent to
Which can be broken down into two subqueries. The result of this is joined on the common node, which is
(p2:Person)
in this case.The text was updated successfully, but these errors were encountered: