MongoX v0.1.3 Mongo.UpdateResult

The successful result struct of Mongo.update_one/5, Mongo.update_many/5 and Mongo.replace_one/5. Its fields are:

  • :matched_count - Number of matched documents
  • :modified_count - Number of modified documents
  • :upserted_id - If the operation was an upsert, the upserted id

Summary

Types

t :: %Mongo.UpdateResult{matched_count: non_neg_integer, modified_count: non_neg_integer, upserted_id: nil | BSON.ObjectId.t}