Slide 14
Slide 14 text
DOCUMENT MODELING
DOCUMENT MODELING
{
_id: 1,
title: "Praesent ante dui",
body: "Lorem ipsum…",
author: { name: "Bob", email: "bob@example.com" },
comments: [
{
body: "Morbi libero erat…",
author: { name: "John", email: "john@example.com" }
},
{
body: "Dapibus quis…",
author: { name: "Tom", email: "tom@example.com" }
},
],
tags: [ "luctus", "rhoncus" ]
}