MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

mongodb progetto di aggregazione objectId con concat

Da MongoDB 4.0 e versioni successive, è disponibile un $toString operatore che restituisce ObjectId valore come stringa esadecimale:

db.test.aggregate([
    { "$match": { 
        "themType": "SuperTest", 
        "mType": { "$in" : [1 , 2] }
    } },
    { "$addFields": { 
        "avatar": { "$toString": "$refTestId" }
    } }
])

o utilizzando $convert

db.test.aggregate([
    { "$match": { 
        "themType": "SuperTest", 
        "mType": { "$in" : [1 , 2] }
    } },
    { "$addFields": { 
        "avatar": { 
            "$convert": { "input": "$refTestId", "to": "string" }
        }
    } }
])