Database
[{"_id":"633d275ceb34a28755974032","name":"free","products":[{"title":"Product 1","phone":[{"title":"Best Phone 1 ","video":{"Location":"https://video.mp4"},"freePreview":true}]},{"title":"Product 2","phone":[{"title":"Best Phone 2","video":{"Location":"https://video.mp4"},"freePreview":false}]}]}]
Query
db.collection.aggregate([{$addFields:{products:{$map:{input:"$products",as:"p",in:{"$mergeObjects":["$$p",{phone:{$map:{input:"$$p.phone",in:{"$mergeObjects":[{"$arrayToObject":{"$filter":{"input":{"$objectToArray":"$$this"},"as":"kv","cond":{"$ne":["$$kv.k","video"]}}}},{video:{$cond:{if:{$eq:[false,"$$this.freePreview"]},then:"$$REMOVE",else:"$$this.video"}}}]}}}}]}}}}}])