报告 MongoDB 和 JavaScript 代码中已弃用的方法的用法。

快速修复会将已弃用的方法替换为推荐的替代方法。

示例:


  db.my_collection.insert()

在应用快速修复后:


  db.my_collection.insertOne()