You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the recent grammar updates that have fixed other syntax errors. The following Cypher query is valid, however, openCypher throws a parse error
MATCH path=()-[]->()
RETURN relationships(path)[0].name
In order to get openCypher to parse it, parentheses have to be added:
MATCH path=()-[]->()
RETURN (relationships(path)[0]).name
Can or will this syntax be accepted into openCypher?
The text was updated successfully, but these errors were encountered:
Thanks for the recent grammar updates that have fixed other syntax errors. The following Cypher query is valid, however, openCypher throws a parse error
In order to get openCypher to parse it, parentheses have to be added:
Can or will this syntax be accepted into openCypher?
The text was updated successfully, but these errors were encountered: