Hi,
Trying to update a content item. But just ONE field. Not the entire entity.
When I try to do this all other fields get overrritten.
Is it mandatory to send the entire entity with all its data when using UpdateAsync? Or is it possible to do it in some other way?
Example:
var updatedPost = new BlogPost();
updatedPost.Id = "theid";
updatedPost.Data.Introduction= "Some introduction text";
await client.UpdateAsync(updatedPost);