db.collection.aggregate([
{
$project: {
days: {
$dateDiff: {
startDate: "$start",
endDate: "$end",
unit: "day"
}
},
_id: 0
}
}
])
db.collection.aggregate([
{
$project: {
Start: "$start",
End: "$end",
years: {
$dateDiff: {
startDate: "$start",
endDate: "$end",
unit: "year"
}
},
months: {
$dateDiff: {
startDate: "$start",
endDate: "$end",
unit: "month"
}
},
days: {
$dateDiff: {
startDate: "$start",
endDate: "$end",
unit: "day"
}
},
_id: 0
}
}
])