MongoDB 3.4以降では、$type
を使用できます。 フィールドのタイプを返す集約演算子。
db.posts.aggregate(
[
{ "$project": { "fieldType": { "$type": "$date2" } } }
]
)
これにより、次のようになります:
{
"_id" : ObjectId("4c0ec11e8fd2e65c0b010000"),
"fieldType" : "string"
}