2
Actually, I have two questions:
Imagine a collection livro
structured:
{
"Título" : "MongoDB para iniciantes",
"Tags" : [
"MongoDB",
"NoSQL"
],
"Comentários" : [
{
"Comentarista" : "Ana",
"Comentário" : "Muito bom"
},
{
"Comentarista" : "Zé",
"Comentário" : "Gostei demais"
}
]
}
DOUBTS:
How do I add a new tag, without overwriting the ones that already exist?
How do I insert a new comment without overwriting existing comments?