I have an user document in database.
users: [
{
id: 3435,
userName: "User name",
books: [
{
id: 5453,
bookId: 123,
name: "Book name",
authors: [{
country: "USA"
name: "Author name"
}]}
]
}
]
what i need to do is insert new book data to books array if the book is not exist. but if exist i want to update the book data of that specific book.
How I can achive this in mongo