Database
[{"_id":ObjectId("5aa58936c4214f42f4c666b8"),"id":"85","user_name":"Alex4Ever","text":"This is a comment","in_reply_to_user_name":"SamLad"},{"_id":ObjectId("5aa58935c4214f42f4c66608"),"id":"86","user_name":"SamLad","text":"I am inevitable","in_reply_to_user_name":null},{"_id":ObjectId("5aa588e4c4214f42f4c63caa"),"id":"87","user_name":"HewwoKitty","text":"What is grief, if not love persevering?","in_reply_to_user_name":"Alex4Ever"},{"_id":ObjectId("5aa588e4c4214f42f4c63cab"),"id":"87","user_name":"HewwoKitty","text":"What is grief, if not love persevering?","in_reply_to_user_name":"Alex4Ever"},{"_id":ObjectId("5aa58935c4214f42f4c6660c"),"id":"86","user_name":"SamLad","text":"I am inevitable","in_reply_to_user_name":"Alex4Ever"},]
Query
db.collection.aggregate([{$match:{"in_reply_to_user_name":{"$exists":true}}},{"$lookup":{"from":"collection","localField":"user_name","foreignField":"in_reply_to_user_name","as":"replies"}},{"$project":{"user_name":1,"replyCount":{"$size":"$replies"}}},{"$group":{"_id":"$user_name","replyCount":{"$first":"$replyCount"}}}])