Du kan se på .findAndUpdate
og til FindAndModifyResult
som giver et .result
operation for at få resultatet i henhold til tilgængelige BSON-læsere.
val person: Future[Option[AType]] = collection.findAndUpdate(
BSONDocument("name" -> "James"),
BSONDocument("$set" -> BSONDocument("age" -> 17)),
fetchNewObject = true).map(_.result[AType])