Отображение кода ошибки Монго 16006
Сервер узла Windows
Моя модель здесь: Проекты: {
fundingInfo : [
{
investAmount : Number,
investDate : Date
}
]
and query is:
Projects.aggregate(
{
$project:{
year:{$year:"$fundingInfo.investDate"},
month:{$month:"$fundingInfo.investDate"},
"fundingInfo" : 1,
"_id" : 1
}
},
{
$unwind:"$fundingInfo"
},
{
$match :
{
"_id": new mongoose.Types.ObjectId(projectRefId),
"year" : new Date().getFullYear()
}
},
{
$group : {
_id : {year : "$year", month : "$month"},
total : {$sum : "$fundingInfo.investAmount"}
}
}
....
во время выполнения выдает ошибку: MongoError ",сообщение: «невозможно преобразовать тип BSON, отсутствующий в дату», ок: 0,…} код: 16006