Cập nhật
https://github.com/sequelize/sequelize/issues/2143
User.find({
where: {id: userId}, attributes: userFields,
include: [
{model: db.Role, attributes: roleFields, through: {attributes: []}}
]
});
Nhưng nó không khớp với phiên bản được lập thành tài liệu trong tài liệu Sequelize được cập nhật, ít nhất là nó phải như vậy.
User.findAll({
include: [{
model: Project,
through: {
attributes: ['createdAt', 'startedAt', 'finishedAt'],
where: {completed: true}
}
}]
});
Hoặc thậm chí đơn giản được nêu trên tài liệu tham khảo:
user.getPictures() // gets you all pictures