How to Do Joins in Sequellize dan Pilih Hal -hal dari Tabel Ketiga

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