Update README.md

This commit is contained in:
Adrien Bouvais 2024-10-14 11:20:17 +02:00 committed by GitHub
parent 8f1ce5462f
commit e67b5afa0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -118,7 +118,7 @@ DELETE User {name = 'Bob'}
### UPDATE
A mix of `GRAB` and `ADD`. It takes a filter first, then the new data.
Here, we update the first 5 `User` entities named 'adrien' to capitalize the name and become 'Adrien':
Here, we update the first 5 `User` entities named 'bob' to capitalize the name and become 'Bob':
```js
UPDATE User [5] {name='bob'} TO (name = 'Bob')
```