Począwszy od MongoDB 3.4, możesz użyć $type
operator agregacji, aby zwrócić typ pola.
db.posts.aggregate(
[
{ "$project": { "fieldType": { "$type": "$date2" } } }
]
)
co daje:
{
"_id" : ObjectId("4c0ec11e8fd2e65c0b010000"),
"fieldType" : "string"
}