skip to Main Content

How to perform conditional arithmetic operations in MongoDB

I've following schema { "_id" : ObjectId("xxxxx"), "updatedAt" : ISODate("2022-06-29T13:10:36.659+0000"), "createdAt" : ISODate("2022-06-29T08:06:51.264+0000"), "payments" : [ { "paymentId" : "xxxxx", "paymentType" : "charge", "paymentCurrency" : "PKR", "paymentMode" : "cash", "paymentTotal" : 13501.88, "penalties" : 100 }, { "paymentId" : "ccccc",…

VIEW QUESTION
Back To Top
Search