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
order by后跟的label属性必须要在return中存在,否则报错属性不存在,感觉不太合理 执行成功:MATCH (n:person) RETURN n.age ORDER BY n.age 报错:MATCH (n:person) RETURN nORDER BY n.name
The text was updated successfully, but these errors were encountered:
可以先类似这样使用 MATCH (n:person) RETURN n,n.name ORDER BY n.name
Sorry, something went wrong.
Hello @jameFly. Please provide more info for debugging. Issues labeled by more info needed will be closed if no activities in 7 days.
more info needed
你好 @jameFly, 我们需要你提供更多信息以便于排查问题。7 天内未跟进此 issue 将会被自动关闭。
Successfully merging a pull request may close this issue.
order by后跟的label属性必须要在return中存在,否则报错属性不存在,感觉不太合理
执行成功:MATCH (n:person) RETURN n.age ORDER BY n.age
报错:MATCH (n:person) RETURN nORDER BY n.name
The text was updated successfully, but these errors were encountered: