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.
Cet exercice fait partie du cours
Introduction to MongoDB in Python
Instructions
- Create a
query_filterto match the original Aladdin movie by title. - Complete the definition of
aladdin_newby setting the"release_year"to2019. - Overwrite the old document with the new one.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Specify the query_filter
query_filter = {
____: ____
}
# Complete the details of the new movie
aladdin_new = {
"title": "aladdin",
"genre": ["adventure", "comedy", "family"],
"____": ____,
"rating": 6.9
}
# Replace the old aladdin movie
res = ____
print(res)