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
(czp@nebula) [nba]> match (n:player) where n.age>43 return n.age,n.name +-------+-------------------+ | n.age | n.name | +-------+-------------------+ | 45 | "Jason Kidd" | +-------+-------------------+ | 46 | "Grant Hill" | +-------+-------------------+ | 47 | "Shaquile O'Neal" | +-------+-------------------+ | 45 | "Steve Nash" | +-------+-------------------+ Got 4 rows (time spent 35201/35831 us) Tue, 19 Jan 2021 17:20:07 CST (czp@nebula) [nba]> match (n:player) where n.age>43 and n.name > "S" return n.age,n.name [ERROR (-8)]: IndexNotFound: No valid index found
The text was updated successfully, but these errors were encountered:
This is a TCK test case from OpenCypher.
Sorry, something went wrong.
Actually I have the same problem with LOOKUP ON profile WHERE profile.name == "something" AND profile.email == "something"
LOOKUP ON profile WHERE profile.name == "something" AND profile.email == "something"
Is there a workaround?
LOOKUP ON profile WHERE profile.name == "something" YIELD profile.email as email | YIELD $-.email WHERE $-.email == "something"
@CPWstatic thanks!
Aiee
No branches or pull requests
The text was updated successfully, but these errors were encountered: