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
Is your feature request related to a problem? Please describe. MATCH p=(m)-[]->(n:genre) WHERE n.name='Action' AND m.duration>160 RETURN p works, but MATCH p=(m)-[]->(n:genre) WHERE n.name='Action'AND m.duration>160 RETURN p not (ParserException).
Describe the solution you'd like
I'd suggest both of them work.
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Currently, spaces are required around the "AND".
You can try modifying the "oC_AndExpression" in Lcypher.g4.
oC_AndExpression : oC_NotExpression ( (SP)* AND (SP)* oC_NotExpression )* ;
The issue is closed due to inactivity. Please feel free to create a new one if you have more questions. And please star this repo if you find it useful! Thanks!
此issue由于长期不活跃被关闭。如有任何问题,可另开 issue 并提供更多信息。如果这个项目帮助到你,可以在仓库右上角 star 一下,感谢你的支持!
Is your feature request related to a problem? Please describe.
MATCH p=(m)-[]->(n:genre) WHERE n.name='Action' AND m.duration>160 RETURN p
works, butMATCH p=(m)-[]->(n:genre) WHERE n.name='Action'AND m.duration>160 RETURN p
not (ParserException).Describe the solution you'd like
I'd suggest both of them work.
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: