From e67b5afa0ae0772e59799ab4995ce5eeff7b9e9a Mon Sep 17 00:00:00 2001 From: Adrien Bouvais Date: Mon, 14 Oct 2024 11:20:17 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74c093d..78fae2a 100644 --- a/README.md +++ b/README.md @@ -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') ```