Método 1: .
use toString() . Ele converterá o objeto em string.
find((docs) => {
let result = docs.map((doc) => {
if(doc.open){
doc.open = doc.open.toString();
}
if(doc.close){
doc.close = doc.close.toString();
}
return doc;
});
//send modified output
res.json(result);
})
saída da seguinte forma:-
/*
[
{
"open": "86.13",
"close": "85.64"
},
]
*/
Método 2: Mongodb 4.0 acima,
db.myCollection.aggregate([
{$match:{
//...
//...
}},
{ $addFields : {
open: {"$toString" : "$open"},
close : {"$toString" : "$close"},
}},
]);