Você pode fazer isso com o
$where
operador. db.collection.find({ "$where": function() {
return Math.round(this.amount.value * 100)/ 100 === 1.12;
}
})
EDITAR (após este comentário )
Nesse caso, você deve usar a estrutura de agregação, especialmente o
$editar
operador e isso é muito mais rápido do que a solução usando $where
db.collection.aggregate([
{ "$redact": {
"$cond": [
{ "$eq": [
{ "$subtract": [
"$amount.value",
{ "$mod": [ "$amount.value", 0.01 ] }
]},
0.03
]},
"$$KEEP",
"$$PRUNE"
]
}}
])