pdpotter opened a new issue #44: URL: https://github.com/apache/incubator-age/issues/44
It is possible to create a node with a list property: ``` SELECT * FROM cypher('testgraph', $$CREATE (v:Test {id: 1, a: ['a', 'b']}) return v$$) as (a agtype); a --------------------------------------------------------------------------------------------- {"id": 1688849860263973, "label": "Test", "properties": {"a": ["a", "b"], "id": 1}}::vertex (1 row) ``` It seems to be impossible to update existing nodes with list properties: ``` SELECT * FROM cypher('testgraph', $$MATCH (ve:Test {id: 1}) SET ve.a = ['c', 'd'] return ve$$) as (a agtype); a -------------------------------------------------------------------------------------- {"id": 1688849860263974, "label": "Test", "properties": {"a": "c", "id": 1}}::vertex (1 row) ``` It also seems to be impossible to add new list properties to existing nodes: ``` SELECT * FROM cypher('testgraph', $$MATCH (ve:Test {id: 1}) SET ve.b = ['e', 'f'] return ve$$) as (a agtype); a ------------------------------------------------------------------------------------------------ {"id": 1688849860263974, "label": "Test", "properties": {"a": "c", "b": "e", "id": 1}}::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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org