.findAndUpdate
およびFindAndModifyResult
>
.result
を提供します 利用可能なBSONリーダーに従って結果を取得するための操作。
val person: Future[Option[AType]] = collection.findAndUpdate(
BSONDocument("name" -> "James"),
BSONDocument("$set" -> BSONDocument("age" -> 17)),
fetchNewObject = true).map(_.result[AType])