Du kan bruge punktnotationen understøttet af mongo.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Tjek denne stackoverflow spørgsmål for ikke-Python-versionen.
Du kan bruge punktnotationen understøttet af mongo.
db.test_collection.find({"data.Country": "ES"})
db.test_collection.find({"data.Count": {"$lt": 6}})
Tjek denne stackoverflow spørgsmål for ikke-Python-versionen.