Możesz to zrobić za pomocą $where
operatora.
db.collection.find({ "$where": function() {
return Math.round(this.amount.value * 100)/ 100 === 1.12;
}
})
EDYCJA (po tym komentarzu )
W takim przypadku powinieneś użyć struktury agregacji, zwłaszcza $redaguj
operatora i jest to znacznie szybsze niż rozwiązanie wykorzystujące $where
db.collection.aggregate([
{ "$redact": {
"$cond": [
{ "$eq": [
{ "$subtract": [
"$amount.value",
{ "$mod": [ "$amount.value", 0.01 ] }
]},
0.03
]},
"$$KEEP",
"$$PRUNE"
]
}}
])