Sequellize termasuk berhenti mengembalikan tabel gabungan

    User.find({
    where: {id: userId}, attributes: userFields,
    include: [
      {model: db.Role, attributes: roleFields, through: {attributes: []}}
    ]
})
Abobakr