im new to mongodb and im having a problems. I have a document like this
[
{
_id: "post1",
content: "post1 content",
comments: [
{
id: "comment 1",
user:"user comment",
replies:[]
},
{
id: "comment 2",
user:"user comment",
replies:[]
}
]
},
{
_id: "post2",
content: "post2 content",
comments: [
{
id: "comment 1",
user:"user comment",
replies:[]
},
{
id: "comment 2",
user:"user comment",
replies:[]
}
]
}
]
How can i put new object into replies? I got the postid and commentid i need