-
-
Notifications
You must be signed in to change notification settings - Fork 86
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
ArcadeDB Version: 21.10.2-SNAPSHOT (build ae608bf/1633588344745/main)
OS: docker
Expected behavior
One of these queries should return results:
MATCH (m:Movie{@rid:'#1:0'})<-[a:ACTED_IN]-(p:Person) RETURN *MATCH (m:#1:0})<-[a:ACTED_IN]-(p:Person) RETURN *(not sure this will/should ever work, adapted from the SQL example)MATCH (m:Movie)<-[a:ACTED_IN]-(p:Person) WHERE m.@rid = '#1:0' RETURN *
Actual behavior
- org.opencypher.v9_0.util.SyntaxException: Invalid input '@' expected whitespace, a property key name, '}', an identifier or UnsignedDecimalInteger (line 1, column 16 (offset: 15))
- org.opencypher.v9_0.util.SyntaxException: Invalid input '#': expected whitespace or a label name
- Invalid input '@'
I tried several other less obvious variations (leaving off the @, using #1:0 without quotes, etc.) without success.
It's possible I just missed the correct way to do this in the docs or something. 😄
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation