Munmud commented on issue #1006:
URL: https://github.com/apache/age/issues/1006#issuecomment-1605230145
You can found the desired result by the following query
```sql
SELECT * FROM cypher('online_orders', $$
CREATE (u:User {name: 'user1', email: '[email protected]', phone:
'1234-5678'})
RETURN u
$$) AS (u agtype);
SELECT * FROM cypher('online_orders', $$
MATCH (u:User {name: 'user1', email: '[email protected]', phone:
'1234-5678'})
SET u.order_id = id(u)
RETURN u
$$) AS (u agtype);
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]