I'll put my question simple, so excuse me...
Does Spring Data MongoDB support dot-notation in update queries?
I've tried to execute this snipet:
Query query = new Query(Criteria.where("_id").is(id));
Update update = new Update();
update.set("value.version",version);
mongoOperations.updateFirst(query, update, Audit.class);
And found no expected changes in Audit collection. What am I missing?