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
Match from edge failed when create index without property
Reproduce:
create edge index index1 on like() rebuild edge index index1 create edge index index2 on like(likeness) rebuild edge index index2 (czp@nebula) [nba]> profile match (v1)-[e:like]->(v2) return v2 +----+ | v2 | +----+ +----+ drop edge index index1 (czp@nebula) [nba]> match (v1)-[e:like]->(v2) return v2 limit 3 +-------------------------------------------------------------------------------------------------------------+ | v2 | +-------------------------------------------------------------------------------------------------------------+ | ("Danny Green" :player{age: 31, name: "Danny Green"}) | +-------------------------------------------------------------------------------------------------------------+ | ("Tim Duncan" :bachelor{name: "Tim Duncan", speciality: "psychology"} :player{age: 42, name: "Tim Duncan"}) | +-------------------------------------------------------------------------------------------------------------+ | ("Tony Parker" :player{age: 36, name: "Tony Parker"}) | +-------------------------------------------------------------------------------------------------------------+
The text was updated successfully, but these errors were encountered:
I try to reproduce it in both versions v2.0.1 and v2.5.0, but failed. Keep this issue open for the time being.
Sorry, something went wrong.
czpmango
No branches or pull requests
Match from edge failed when create index without property
Reproduce:
The text was updated successfully, but these errors were encountered: