Wednesday, March 12, 2014

Mongo 2.4.9 - $exist

- db.products.find({'limits.voice':{$exists:1}}).limit(1).pretty()

{
        "_id" : ObjectId("507d95d5719dbef170f15bfe"),
        "name" : "Phone Service Basic Plan",
        "type" : "service",
        "monthly_price" : 40,
        "limits" : {
                "voice" : {
                        "units" : "minutes",
                        "n" : 400,
                        "over_rate" : 0.05
                },
                "data" : {
                        "units" : "gigabytes",
                        "n" : 20,
                        "over_rate" : 1
                },
                "sms" : {
                        "units" : "texts sent",
                        "n" : 100,
                        "over_rate" : 0.001
                }
        },
        "term_years" : 2
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.