waleedahmed0001 commented on issue #882:
URL: https://github.com/apache/age/issues/882#issuecomment-1545240312

   The merge syntax is this one:
   `MERGE (n:Label {property: value})`
   
   You must need to enter the vertex details to run the query. 
   
   
   From Documentation, merge is being used in this way
   
   `SELECT * FROM cypher('graph_name', $$
   MERGE (charlie {name: 'Charlie Sheen', age: 10})
   RETURN charlie
   $$) as (v agtype);`
   
   For detailed information, you can see this documentation:
   [Merge 
Documentation](https://age.apache.org/age-manual/master/clauses/merge.html)


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