U kunt de puntnotatie gebruiken die door mongo wordt ondersteund.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Controleer deze stackoverflow vraag voor de niet-Python-versie.
U kunt de puntnotatie gebruiken die door mongo wordt ondersteund.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Controleer deze stackoverflow vraag voor de niet-Python-versie.