belongsToMany コード>
ここでの関連付け。
このように関連付けを定義できます
Product.belongsToMany(Category, { through: ProductCategory, foreignKey: 'product_id' });
Category.belongsToMany(Product, { through: ProductCategory, foreignKey: 'category_id' });
クエリは
Product.findAll({
include: [Category]
}).then((res) => {
console.log(res);
})