AadilBashir489 commented on issue #934:
URL: https://github.com/apache/age/issues/934#issuecomment-1599679277

   Yes, you can update multiple nodes with single query. You can use either of 
the two methods below:
   1. Conditional base:
       `MATCH (n:label)
   WHERE n.Property = 'oldValue'
   SET n.newProperty = 'newValue'`
   
   2. Updating all nodes of a specific label:
      `MATCH (n:label)
   SET n.newProperty = 'updatedValue'`
   
   I hope this helps you.


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