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
The result is as expected when the key is a single word:
(root@nebula) [nba]> match (v:player) where v.name in {Nobody: 666} return v +--------------------------------------------+ | v | +--------------------------------------------+ | ("Nobody" :player{age: 0, name: "Nobody"}) | +--------------------------------------------+ Got 1 rows (time spent 14177/14658 us)
It fails when using a string containing spaces as the key:
(root@nebula) [nba]> match (v:player) where v.name in ["Tim Duncan"] return v +-------------------------------------------------------------------------------------------------------------+ | v | +-------------------------------------------------------------------------------------------------------------+ | ("Tim Duncan" :bachelor{name: "Tim Duncan", speciality: "psychology"} :player{age: 42, name: "Tim Duncan"}) | +-------------------------------------------------------------------------------------------------------------+ Got 1 rows (time spent 14180/14591 us) (root@nebula) [nba]> match (v:player) where v.name in {Tim Duncan: 666} return v [ERROR (-1004)]: SyntaxError: syntax error near `Duncan' (root@nebula) [nba]> match (v:player) where v.name in {"Tim Duncan": 666} return v [ERROR (-1004)]: SyntaxError: syntax error near `: 666} r'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The result is as expected when the key is a single word:
It fails when using a string containing spaces as the key:
The text was updated successfully, but these errors were encountered: