Počínaje MongoDB 3.4 můžete použít $type
agregační operátor, který vrátí typ pole.
db.posts.aggregate(
[
{ "$project": { "fieldType": { "$type": "$date2" } } }
]
)
což dává:
{
"_id" : ObjectId("4c0ec11e8fd2e65c0b010000"),
"fieldType" : "string"
}