Open
Description
I was trying to run this code and found out that @LastModifiedDate annotation in my MyDocumentType entity is not automatically put into my document. The field is disappeared.
var bulkOps = reactiveMongoTemplate.bulkOps(BulkOperations.BulkMode.UNORDERED, MyDocumentType.class);
var query = new Query(Criteria.where("_id").is(doc.getId()));
var option = new FindAndReplaceOptions().upsert();
bulkOps.replaceOne(query, doc, option);