Created
January 2, 2022 13:17
-
-
Save efuaakum/94d049fb45b9d9045dc4b590bfd09a68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use('filmstore'); | |
db.movie.bulkWrite([{updateOne:{ | |
filter:{"title":"A Clockwork Orange"}, | |
update:{"poster":"https://m.media-amazon.com/images/M/MV5BMTY3MjM1Mzc4N15BMl5BanBnXkFtZTgwODM0NzAxMDE@._V1_UX182_CR0,0,182,268_AL_.jpg"} | |
}}, | |
{insertOne:{ | |
document:{ | |
"title":"Xanadu", | |
"awards":{"wins":1,"nominations":10}, | |
"year":1980, | |
"runtime":96, | |
"countries":["USA"], | |
"budget":{"currency":"USD","amount":20000000}, | |
"boxoffice":{"currency":"USD","amount":23000000}, | |
"actors":["Olivia Newton-John","Gene Kelly","Michael Beck"], | |
"directors":["Robert Greenwald"], | |
"plot":"A struggling artist living in Los Angeles meets a girl who may hold the key to his happiness.", | |
"poster":"https://m.media-amazon.com/images/M/MV5BYTlkNWQyMjAtZGE2Yi00YWU2LWI5N2EtOGIwYjJjOTkxNzNhXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_UX182_CR0,0,182,268_AL_.jpg" | |
} | |
}}]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment