Mysql
 sql >> Database >  >> RDS >> Mysql

Sequelizza restituisce la tabella di join nella query

Aggiorna

https://github.com/sequelize/sequelize/issues/2143

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

Ma non corrisponde alla versione documentata nella documentazione di Sequelize che è aggiornata, almeno dovrebbe esserlo.

User.findAll({
  include: [{
    model: Project,
    through: {
      attributes: ['createdAt', 'startedAt', 'finishedAt'],
      where: {completed: true}
    }
  }]
});

O anche semplicemente indicato nella documentazione di riferimento:

user.getPictures() // gets you all pictures