मुझे यकीन नहीं है कि इस मामले में "भेजें" फ़ंक्शन क्या करता है, लेकिन मुझे लगता है कि अगर आप इसे निम्नलिखित में बदलते हैं तो काम करना चाहिए:
db.collection('listings').find({}) //test
.toArray((err, result) => {
console.log(result);
if (err)
{
context.res = { status: 500, body: err.message };
}
else
{
context.res = { status: 200, body: JSON.parse(JSON.stringify(result)) };
}
context.done();
});