Database

[{"_id":ObjectId("5fc4d0009a25e8cfbe306381"),"eventDate":ISODate("2021-11-29T01:00:00.000Z"),"team1":{"tName":"Chicago Bears",},"team2":{"tName":"Green Bay Packers",}},{"_id":ObjectId("5fc4d0019a25e8cfbe3063ff"),"eventDate":ISODate("2021-11-30T01:00:00.000Z"),"team1":{"tName":"Nashville SC",},"team2":{"tName":"Columbus Crew",}},{"_id":ObjectId("5fc4d0019a25e8cfbe3063f4"),"eventDate":ISODate("2021-11-30T01:00:00.000Z"),"team1":{"tName":"yyyy",},"team2":{"tName":"xxxx",}}]

Query

db.collection.aggregate([{"$match":{"eventDate":{$gte:ISODate("2020-12-02T01:00:00.000Z")}}},{"$group":{"_id":{$dateToString:{format:"%Y-%m-%d",date:"$eventDate"}},eventDate:{$first:"$eventDate"},"games":{$push:{team1:"$team1",team2:"$team2"}}}},{$sort:{eventDate:1}},{"$facet":{"resultData":[{$limit:1}],"pageInfo":[{"$count":"totalRecords"}]}}])

Result