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

   Yes, you can indeed update properties for multiple nodes without specifying 
each node individually. The exact query will depend on your specific criteria 
for which nodes to update, but here is an example:
   ```
   MATCH (n:label4)
   WHERE n.someProperty = 'some value'
   SET n.newProperty = 'new value'
   ```
   
   In this query, MATCH (n:label4) matches all nodes with the label "label4". 
The WHERE clause filters these nodes to only those where someProperty has the 
value 'some value'. Then, SET n.newProperty = 'new value' updates the 
newProperty attribute of these nodes to 'new value'.
   
   


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