Is it possible to use an update query with a where clause in Azure Cosmos DB using SQL-like logic like is in this statement?
Update Tasks set Tasks.name='Update My Task'
where Tasks.categoryId='695c9592-a42b-48a9-b266-1cfd55490a0a'
and Tasks.taskOrder >=1
I see that there is no SQL Query equivalent, but is there a way to perform what's logically equivalent to an efficient UPDATE -- a PATCH, not a PUT?