Database

[{_id:1234,fallBackData:{nestedKey:[{arrayKey:"theValue",foo:"bar"},{arrayKey:"anotherValue",foo:"baz"}]}}]

Query

db.collection.update({_id:1234},{$pull:{"fallBackData.nestedKey":{arrayKey:"theValue"}}})

Result