-
Notifications
You must be signed in to change notification settings - Fork 154
Open
Description
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?
jonaskello
Metadata
Metadata
Assignees
Labels
No labels