Database
[{"_id":"6175f8c69c03810ea8e7b31e","name":"myboard","color":"","labels":[{"color":"blue","title":"project1"}],"lists":[{"archived":true,"_id":"ObjectId","cards":[]},{"archived":false,"_id":"ObjectId","cards":[]},{"archived":false,"_id":"ObjectId","cards":[{"archived":true,"labelSelected":[],"title":"mycard","description":"","attachments":[],"comments":[]}]},{"archived":false,"_id":"ObjectId","cards":[{"archived":false,"labelSelected":[],"title":"mycard","description":"","attachments":[],"comments":[]}]}]}]
Query
db.collection.aggregate([{"$unwind":"$lists"},{$match:{$or:[{"lists.cards":[]},{"lists.cards":{$elemMatch:{"archived":false}}}]}},{"$group":{"_id":"_id","lists":{"$addToSet":"$lists"},"name":{"$first":"$name"},"lables":{"$first":"$labels"},"color":{"$first":"$color"},}}])