Tôi không chắc chức năng "send" làm gì trong trường hợp này, nhưng tôi nghĩ nếu bạn chỉ cần thay đổi nó thành như sau thì sẽ hoạt động:
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();
});