I want to do something more REST like this:
Select resources whose field1 equals foo, and update field1 to bar
UPDATE XXX SET field1 = "bar" WHERE field1="foo"
Two solutions as I can see:
GETitems matching my requirement, thenPUTto update them. Maybe withEtagorIf-Matchto guarantee it's atomic.- Write a customized
PUTmethod handler, so the query string represent the WHERE clause in the SQL and the content of thePUTrequest represent theSETclause in SQL
Personally I prefer the latter solution, but in REST, the PUT method is supposed to overwrite *a* resource, not many resources at a time, nor just updating some fields of the resource.
I also checked the HTTP PATCH method proposal. It makes "updating some fields of a resource" possible, but it's not used to update many resources at once too.
So what's your solution? I'd like to see your best practice :-)