Search code examples
mongodbmongodb-queryaggregation-framework

multiply in mongodb saying operation only on string type


I am trying to multiply 2 fields in mongodb. Both are of numeric type, but mongodb is returning $multiply only supports numeric types. The collection is:

{
        "_id" : ObjectId("55e07eb54acc499bb3daae6a"),
        "propertytype" : "Hotel",
        "name" : "Rude Lounge2",
        "costing" : {
                "vegperplate" : 350,
                "nonvegperplate" : 450,
                "flatcharge" : 20000
        },
        "capacity" : {
                "min" : 90,
                "max" : 200
        }
}
{
        "_id" : ObjectId("55e07ebe4acc499bb3daae6b"),
        "propertytype" : "Hotel",
        "name" : "Rude Lounge3",
        "costing" : {
                "vegperplate" : 350,
                "nonvegperplate" : 450,
                "flatcharge" : 20000
        },
        "capacity" : {
                "min" : 90,
                "max" : 200
        }
}

My query is :

> db.properties2.aggregate(
... { $project: {
...  "cost": {
... $multiply:["costing.vegperplate","capacity.min"]
...       }
... }
... })

Error stack is:

assert: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed
Error: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed
    at Error (<anonymous>)
    at doassert (src/mongo/shell/assert.js:11:14)
    at Function.assert.commandWorked (src/mongo/shell/assert.js:244:5)
    at DBCollection.aggregate (src/mongo/shell/collection.js:1149:12)
    at (shell):1:16
2015-08-29T00:13:39.173-0400 Error: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed at src/mongo/shell/assert.js:13

Anybody where am I doing wrong?


Solution

  • You need to prefix your fields' name with the $ sign since your operation is in on two different fields in your document.

    db.properties2.aggregate([
        { 
            "$project": {
                "cost": { "$multiply": [ "$costing.vegperplate", "$capacity.min" ]}
        }
    ])