Database

db={"Libraries":[{"_id":ObjectId("5f45440ee89590218e83a698"),"workingHours":"8:00 PM - 8:00 AM","address":ObjectId("5f4544198da452a5523e3d11")}],"Books":[{"_id":ObjectId("5f454423be823729015661ed"),"published":true,"hidden":false,"title":"The Hobbit, or There and Back Again","libraryId":ObjectId("5f45440ee89590218e83a697")},{"_id":ObjectId("5f45445b876d08649b88ed5a"),"published":true,"hidden":false,"title":"Harry Potter and the Philosopher's Stone","libraryId":ObjectId("5f45440ee89590218e83a697")},{"_id":ObjectId("5f45446c7e33ca70363f629a"),"published":true,"hidden":false,"title":"Harry Potter and the Cursed Child","libraryId":ObjectId("5f45440ee89590218e83a697")},{"_id":ObjectId("5f45447285f9b3e4cb8739ad"),"published":true,"hidden":false,"title":"Fantastic Beasts and Where to Find Them","libraryId":ObjectId("5f45440ee89590218e83a697")},{"_id":ObjectId("5f45449fc121a20afa4fbb96"),"published":false,"hidden":false,"title":"Universal Parks & Resorts","libraryId":ObjectId("5f45440ee89590218e83a697")},{"_id":ObjectId("5f4544a5f13839bbe89edb23"),"published":false,"hidden":true,"title":"Ministry of Dawn","libraryId":ObjectId("5f45440ee89590218e83a697")}]}

Query

db.Libraries.aggregate([{"$lookup":{"from":"Books","localField":"_id","foreignField":"libraryId","as":"books"}},{"$unwind":{path:"$books",preserveNullAndEmptyArrays:true}},/** {*//** $match: {*//** "books.published": true*//** }*//** },*/{$group:{_id:"$_id",published:{$first:"$books.published"},title:{$first:"$books.title"},books:{$push:"$books"},booksCount:{$sum:1}}}])

Result