Skip to content
New issue

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

cypher查询order by问题 #553

Closed
jameFly opened this issue Jun 12, 2024 · 2 comments · Fixed by #585
Closed

cypher查询order by问题 #553

jameFly opened this issue Jun 12, 2024 · 2 comments · Fixed by #585

Comments

@jameFly
Copy link

jameFly commented Jun 12, 2024

order by后跟的label属性必须要在return中存在,否则报错属性不存在,感觉不太合理
执行成功:MATCH (n:person) RETURN n.age ORDER BY n.age
报错:MATCH (n:person) RETURN nORDER BY n.name

@zhangwh807
Copy link
Collaborator

可以先类似这样使用
MATCH (n:person) RETURN n,n.name ORDER BY n.name

Copy link

github-actions bot commented Jul 4, 2024

Hello @jameFly. Please provide more info for debugging. Issues labeled by more info needed will be closed if no activities in 7 days.

你好 @jameFly, 我们需要你提供更多信息以便于排查问题。7 天内未跟进此 issue 将会被自动关闭。

@ljcui ljcui linked a pull request Jul 5, 2024 that will close this issue
@ljcui ljcui closed this as completed in #585 Jul 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants