shady-cj commented on issue #934: URL: https://github.com/apache/age/issues/934#issuecomment-1565966052
To update properties for multiple nodes there has to be something common with those nodes… * one is the label… so you can do `MATCH (n:label)` * Second is the properties (Probably there is a property that is common among the nodes) E.g ``` MATCH (movies) WHERE movies.rating = 5 ``` Then you can update the property.. * You can also do the combination of the two I.e matching labels and properties that have something in common.. Depending on your scenario all method works and you’ll be able to update or set new properties for multiple nodes that match your query. -- 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