Answers for "mongodb aggregate calculated no of days between two dates"

1

mongodb date before 2 days

// 2 days before
"StartDate" : { "$lt" : new Date(ISODate().getTime() - 1000 * 86400 * 2) }
Posted by: Guest on August-28-2020
0

mongodb subtract dates

db.sales.aggregate( [ { $project: { item: 1, total: { $subtract: [ { $add: [ "$price", "$fee" ] }, "$discount" ] } } } ] )
Posted by: Guest on November-22-2020

Code answers related to "mongodb aggregate calculated no of days between two dates"

Browse Popular Code Answers by Language