1. 学习
  2. /
  3. 课程
  4. /
  5. Introduction to MongoDB in Python

Connected

练习

Replacing an entire document

The Aladdin entry in your movie collection is outdated. You've been asked to replace it in full with a newer version of the film released in 2019. To do that, you'll use .replace_one(), which swaps the entire document with a new one.

说明

100 XP
  • Create a query_filter to match the original Aladdin movie by title.
  • Complete the definition of aladdin_new by setting the "release_year" to 2019.
  • Overwrite the old document with the new one.