Database
[{_id:1234,fallBackData:{nestedKey:[{arrayKey:"theValue"},{arrayKey:"anotherValue"}]}}]
Query
db.collection.update({_id:1234,"fallBackData.nestedKey":{$elemMatch:{"arrayKey":"theValue"}}},{$pull:{"fallBackData.nestedKey":{arrayKey:"theValue"}}})