Mongodb 4.0 a introduit $toLong
agrégation qui convertit la date en horodatage
db.collection.aggregate([
{ "$project": {
"createdAt": {
"$toLong": "$createdAt"
}
}}
])
Vous pouvez l'essayer ici
Mongodb 4.0 a introduit $toLong
agrégation qui convertit la date en horodatage
db.collection.aggregate([
{ "$project": {
"createdAt": {
"$toLong": "$createdAt"
}
}}
])
Vous pouvez l'essayer ici