Vous pouvez utiliser la notation par points prise en charge par mongo.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Vérifiez ce stackoverflow question pour la version non-Python.
Vous pouvez utiliser la notation par points prise en charge par mongo.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Vérifiez ce stackoverflow question pour la version non-Python.