mingfang opened a new issue, #1630: URL: https://github.com/apache/age/issues/1630
```cypher WITH ['jon', 'snow'] AS cols MERGE (v:PERSION {first: cols[0], last: cols[1]}) RETURN v ``` returns wrong result. person is missing first and last name. ```json { "v": { "id": 2533274790395920, "label": "PERSION", "properties": {} } } ``` but a slight change(return v, cols) works ```cypher WITH ['jon', 'snow'] AS cols MERGE (v:PERSION {first: cols[0], last: cols[1]}) RETURN v, cols ``` very strange. -- 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