Zeesh-an commented on issue #934: URL: https://github.com/apache/age/issues/934#issuecomment-1589183542
You can update multiple nodes with single query. This can be done in two ways: 1) Based on Condition ``` MATCH (n:label) WHERE n.Property = 'previousValue' SET n.newProperty = 'updatedValue' ``` 2) All nodes of a specific label ``` MATCH (n:label) SET n.newProperty = 'updatedValue' ``` -- 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]
