MongoDB entre deux valeurs
#all documents with the price value between 100 and 200
query = db.collection.find({
'price': { '$gt': 100, '$lt': 200}
})
Annoyed Antelope