Database
[{"_id":{"$oid":"60626db173b4ca321c02ee3e"},"year":"2021","name":"Book 1","authors":["Joe, B","Jessica, K"],"createdAt":{"$date":"2021-03-30T00:15:45.859Z"}},{"_id":{"$oid":"60626db173b4ca321c02ee4e"},"year":"2021","authors":["Carl, B","Jessica, K"],"name":"Book 2","createdAt":{"$date":"2021-03-30T00:15:45.859Z"}},{"_id":{"$oid":"60626db173b4ca321c02ee4f"},"year":"2020","authors":["Carl, B","Jessica, K"],"name":"Book 2","createdAt":{"$date":"2021-03-30T00:15:45.859Z"}}]
Query
db.collection.aggregate([{$group:{_id:{year:"$year"},authors:{$push:"$authors"},yearCount:{$sum:1}}},{$unwind:"$authors"},{$unwind:"$authors"},{$group:{_id:{author:"$authors"},year:{$first:"$_id.year"},yearCount:{$first:"$yearCount"},authors:{$push:"$authors"},authorCount:{$sum:1}}},{"$group":{_id:null,years:{$addToSet:{k:"$year",v:"$yearCount"}},authors:{$addToSet:{k:"$_id.author",v:"$authorCount"}}}},{$project:{_id:0,years:{$arrayToObject:"$years"},authors:{$arrayToObject:"$authors"}}}])