Fixed update

This commit is contained in:
2023-05-02 07:08:50 +10:00
parent 40ce5badbd
commit cdb0653e38
2 changed files with 25 additions and 4 deletions
+17
View File
@@ -1,8 +1,25 @@
POST http://sineql-demo.krgamestudios.com/sineql HTTP/1.1
Content-Type: text/plain
update Book [
{
match title "foo"
update published "2020-01-01"
}
{
match title "Bar"
update published "2021-01-01"
}
]
###
POST http://sineql-demo.krgamestudios.com/sineql HTTP/1.1
Content-Type: text/plain
Book {
title
published
}
###