MongoDB find: Query a field which has a nested dictionary structure
I have a collection which has one of the fields in it as a nested dictionary. Sample: { "_id": ObjectId(""), "family_member": { "mother":{ "name": "Mary", "age": 40, "address": { "city": "Dover", "state": "Delaware", "zip_code": "19901" } }, "father":{ "name": "John",…