wqxs opened a new issue, #239:
URL: https://github.com/apache/age/issues/239

   I created a point
   `SELECT *
   FROM ag_catalog.cypher('zjdata_graph', $$
   CREATE (a:a {id:1,map:{name:'a'}})
   RETURN id(a), properties(a) 
   $$) as (id ag_catalog.agtype,properties ag_catalog.agtype)`
   
   results are as follows
   
![image](https://user-images.githubusercontent.com/69672009/178097627-e5741bb9-1c91-4185-8d18-d423ea2ccf4b.png)
   
   I modify the map property value
   `SELECT *
   FROM ag_catalog.cypher('zjdata_graph', $$
   MATCH (a:a)
   WHERE a.id = 1
   SET a.map = '{"name":"b"}'
   RETURN id(a), properties(a) 
   $$) as (id ag_catalog.agtype,properties ag_catalog.agtype)`
   
   This is not the result I want, please tell me how to solve it
   
![AY6K8H4WW~_58$(JSEE1ISV](https://user-images.githubusercontent.com/69672009/178097829-b4199ade-c876-4246-a9dd-7bfa991bd741.png)
   
   


-- 
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]

Reply via email to