9) mongoDB Tutorial - Nested Documents
{ _id: ObjectId("651ea1c50f2a995b7b1b0d64"), title: 'Name of the Wind', author: 'Patrick Rothfuss', pages: 500, genres: [ '문학작품', '동화' ], rating: 9, } mongoDB에선 저기 왼쪽의 key를 필드라 말한다 json과 비슷하게 생긴 구조이며 저 하나의 Documents 안에 중첩으로 또 들어갈수도 있다 { _id: ObjectId("651ea1c50f2a995b7b1b0d64"), title: 'Name of the Wind', author: 'Patrick Rothfuss', pages: 500, genres: [ '문학작품', '동화' ], rating: 9, "stock": { "co..
2023. 10. 6.