अपडेट करें
https://github.com/sequelize/sequelize/issues/2143
User.find({
where: {id: userId}, attributes: userFields,
include: [
{model: db.Role, attributes: roleFields, through: {attributes: []}}
]
});
लेकिन यह Sequelize प्रलेखन में प्रलेखित संस्करण से मेल नहीं खाता है जो अप-टू-डेट है, कम से कम यह होना चाहिए।
User.findAll({
include: [{
model: Project,
through: {
attributes: ['createdAt', 'startedAt', 'finishedAt'],
where: {completed: true}
}
}]
});
या संदर्भ दस्तावेज़ीकरण: पर भी सरल कहा गया है
user.getPictures() // gets you all pictures