Reputation: 39
Im trying to add new objects in my CosmosDB Item using LogicApp.
{
"id": "1000",
"phone": "55512341212"
}
to
{
"id": "1000",
"phone": "55512341212"',
"name":"David"
}
Upvotes: 1
Views: 1123
Reputation: 8793
Partial updates are not currently possible with Cosmos DB. You must write the entire record back using ReplaceItemAsync() or UpsertItemAsync().
Upvotes: 1