jrgemignani commented on issue #1709:
URL: https://github.com/apache/age/issues/1709#issuecomment-2033297890

   @mingfang It looks like maybe my PR #1718 might have fixed this one too?! 
This is in the master branch, btw.
   
   ```
   psql-16.1-5432-pgsql=# SELECT create_graph('playground');
   NOTICE:  graph "playground" has been created
    create_graph
   --------------
   
   (1 row)
   
   psql-16.1-5432-pgsql=# SELECT * FROM cypher('playground', $$
   psql-16.1-5432-pgsql$#   UNWIND [{first: 'jon', last: 'snow'}, {first: 
'ned', last: 'stark'}] AS map
   psql-16.1-5432-pgsql$#   MERGE (v:PERSON {first: map.first})
   psql-16.1-5432-pgsql$#   SET v=map
   psql-16.1-5432-pgsql$#   RETURN v
   psql-16.1-5432-pgsql$# $$) AS (v agtype);
                                                     v
   
-----------------------------------------------------------------------------------------------------
    {"id": 844424930131969, "label": "PERSON", "properties": {"last": "snow", 
"first": "jon"}}::vertex
    {"id": 844424930131970, "label": "PERSON", "properties": {"last": "stark", 
"first": "ned"}}::vertex
   (2 rows)
   
   psql-16.1-5432-pgsql=#
   ```
   


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

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to