Answers for "joins in mysql use sequelize"

C++
0

how to do joins in sequelize and select things from the third table

User.findAll({
  include: [{
    model: Project,
    through: {
      attributes: ['createdAt', 'startedAt', 'finishedAt'],
      where: {completed: true}
    }
  }]
});
Posted by: Guest on December-27-2021
0

joins in mysql use sequelize

User.findAll({
  include: [{
    model: Tool,
    as: 'Instruments',
    include: [{
      model: Teacher,
      where: {
        school: "Woodstock Music School"
      },
      required: false
    }]
  }]
});
Posted by: Guest on March-07-2022

Browse Popular Code Answers by Language