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

Restituisce il tipo effettivo di un campo in MongoDB

A partire da MongoDB 3.4, puoi usare il $type operatore di aggregazione per restituire il tipo di un campo.

db.posts.aggregate( 
    [ 
        { "$project": { "fieldType": {  "$type": "$date2"  } } } 
    ]
)

che produce:

{ 
    "_id" : ObjectId("4c0ec11e8fd2e65c0b010000"), 
    "fieldType" : "string" 
}