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
Describe the bug I encountered an error when trying to get size of vle edge array in where clause which should have executed without error.
How are you accessing AGE (Command line, driver, etc.)?
What data setup do we need to do?
SELECT * FROM cypher('graph',$$ CREATE (n)-[:KNOWS {n:'hello'}]->({n:'hello'}) $$) as (a agtype);
What is the command that caused the error?
SELECT * FROM cypher('graph', $$ MATCH (m)-[v *]->(b) WHERE size(v) >1 RETURN b $$) AS (a agtype);
ERROR: size() unsupported argument
Expected behavior Should have returned
{"id": 281474976710658, "label": "", "properties": {"n": "hello"}}::vertex
Environment (please complete the following information):
Additional context same error exists in all array functions i.e. they dont recognize VPC.
The text was updated successfully, but these errors were encountered:
The condition beside the WHERE clause is > 1, this will return an error as the size is not greater than 1.
WHERE
> 1
size(v) = 1 1 > 1 is FALSE.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
I encountered an error when trying to get size of vle edge array in where clause which should have executed without error.
How are you accessing AGE (Command line, driver, etc.)?
What data setup do we need to do?
What is the command that caused the error?
Expected behavior
Should have returned
Environment (please complete the following information):
Additional context
same error exists in all array functions i.e. they dont recognize VPC.
The text was updated successfully, but these errors were encountered: