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
|
It would be nice to have ability to query nodes with pre-selected labels by | or operator.
MATCH (A:person) -[:knows]-> (B:person|animal)
We can see that it is already implemented in relations. Probably it would be easy to make it work for nodes also
The text was updated successfully, but these errors were encountered:
Nice! Adding this to the task list for sure.
Here's an implementation plan for whomever picks this up:
TYPE
type_list
grand-cypher/grandcypher/__init__.py
Line 118 in fff7651
list[str]
Line 1102 in fff7651
_is_node_attr_match
_is_edge_attr_match
Line 203 in fff7651
Sorry, something went wrong.
No branches or pull requests
It would be nice to have ability to query nodes with pre-selected labels by
|
or operator.We can see that it is already implemented in relations. Probably it would be easy to make it work for nodes also
The text was updated successfully, but these errors were encountered: