MongoX v0.1.3 Mongo.SaveManyResult

The successful result struct of Mongo.save_many/4. Its fields are:

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

Summary

Types

t :: %Mongo.SaveManyResult{matched_count: non_neg_integer, modified_count: non_neg_integer, upserted_ids: nil | BSON.ObjectId.t}