Database

[{"_id":{"$oid":"6276eb2195b181d38eee0b43"},"username":"abvd","password":"efgh","thoughts":[{"_id":{"$oid":"62778ff975e2c8725b9276f5"},"text":"last thought","anonymous":true,"replies":[{"_id":{"$oid":"62778fff75e2c8725b9276f5"},"text":"new reply","anonymous":true,"username":"anonymous"},{"_id":{"$oid":"62778fff75e2c8725b9276f5"},"text":"new reply","anonymous":false,"username":"cdf"}]}]}]

Query

db.collection.aggregate([{$set:{thoughts:{$map:{input:"$thoughts",as:"thought",in:{$mergeObjects:["$$thought",{replies:{$map:{input:"$$thought.replies",as:"reply",in:{$mergeObjects:["$$reply",{username:{"$cond":{"if":"$$reply.anonymous","then":"anonymous","else":"$$reply.username"}}}]}}}}]}}}}}])

Result