Skip to content
New issue

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

Implement more complex join patterns #62

Closed
Dtenwolde opened this issue Dec 11, 2023 · 1 comment
Closed

Implement more complex join patterns #62

Dtenwolde opened this issue Dec 11, 2023 · 1 comment
Labels
enhancement New feature or request medium priority

Comments

@Dtenwolde
Copy link
Contributor

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.

@Dtenwolde
Copy link
Contributor Author

Implemented as of #69

Dtenwolde pushed a commit that referenced this issue Mar 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request medium priority
Projects
None yet
Development

No branches or pull requests

1 participant