Mongoose đa nguyên hóa tên bộ sưu tập tại thời điểm tạo. Vì vậy, thay vì schedule
bạn nên sử dụng schedule
{ "$lookup": {
"from": "schedules",
"localField": "_id.id",
"foreignField": "customer.id",
"as": "user_detail"
}}
hoặc nhập bộ sưu tập và trích xuất tên bộ sưu tập từ đó
const Schedule = require('/schedules')
{ "$lookup": {
"from": Schedule.collection.name,
"localField": "_id.phone",
"foreignField": "customer.phone",
"as": "user_detail"
}}