Nếu bạn đang sử dụng async-await
Sau đó, hãy thử như dưới đây tại Lời hứa .all ()
sẽ giúp bạn thực hiện tất cả các thao tác song song:
async function getCounts() {
let [student,teacher,staff] = await Promise.all([student.countDocuments({}),teacher.countDocuments({}),staff.countDocuments({})]);
return {student,teacher,staff};
}
/** call this function in main handler function where you get API call */
getCounts().then((data)=>{res.json(data)}).catch((err)=>{console.log(err)})