MuhammadTahaNaveed opened a new issue, #1461: URL: https://github.com/apache/age/issues/1461
Usage of containment op instead of equal in property constraints (for lists and maps) outputs different results as compared to neo4j. Is this intentional? **Data:** ``` CREATE (n {list:[1,2,3,4]}) return n ``` **Query with issue:** ``` MATCH (n {list:[4]}) return n ``` **Results** `Neo4j:` ``` No rows returned ``` `Age:` ``` pg16=# SELECT * FROM cypher('issue_', $$MATCH (n {list:[4]}) return n$$) AS (u agtype); u ------------------------------------------------------------------------------------ {"id": 281474976710657, "label": "", "properties": {"list": [1, 2, 3, 4]}}::vertex (1 row) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@age.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org