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
coalesce
**Describe the bug ** function coalesce incompatible with cypher
How To Reproduce
(czp@nebula) [nba]> with ["123",null,"abc"] as ids return coalesce([ids[1],ids[2]]) +---------------------------+ | coalesce([ids[1],ids[2]]) | +---------------------------+ | "abc" | +---------------------------+
Expected behavior
neo4j@neo4j> with ["123",null,"abc"] as ids return coalesce(ids[1],ids[2]); +-------------------------+ | coalesce(ids[1],ids[2]) | +-------------------------+ | "abc" | +-------------------------+
The text was updated successfully, but these errors were encountered:
link https://discuss.nebula-graph.com.cn/t/topic/4637/7
Sorry, something went wrong.
Already fixed.
Rename kind to type for LM (vesoft-inc#2643)
a567691
No branches or pull requests
**Describe the bug **
function
coalesce
incompatible with cypherHow To Reproduce
Expected behavior
The text was updated successfully, but these errors were encountered: