Database

[{_id:1,name:"Canon",collections:{cameras:{as:{title:"Half-Frame"}}},tag:"included",status:"published"},{_id:2,name:"Pentax",collections:{cameras:{as:{title:"Full-Frame"}}},tag:"included",status:"published"},{_id:3,name:"Kodak",collections:{film:{as:{title:"35mm Film"}}},tag:"included",status:"published"},{_id:4,name:"Ricoh",collections:{cameras:{as:{title:"Full-Frame"}}},tag:"included",status:"published"},{_id:5,name:"Minolta",collections:{cameras:{as:{title:"Half-Frame Review"}}},tag:"excluded",status:"published"},{_id:6,name:"FED",collections:{cameras:{as:{title:"Full-Frame"}}},tag:"included",status:"draft"}]

Query

db.collection.aggregate([{$match:{$and:[{tag:{$ne:"excluded"},"collections.cameras":{$exists:true},status:"published",},{$or:[{$and:[{"collections.cameras.as.title":{$eq:"Full-Frame"}},{"_id":{$gt:2}}]},{"collections.cameras.as.title":{$gt:"Full-Frame"}}]}]}},{$sort:{"collections.cameras.as.title":1,_id:1}},{$limit:1}])

Result