Saya pikir Anda harus menggunakan belongsToMany
asosiasi di sini.
Anda dapat mendefinisikan asosiasi seperti ini
Product.belongsToMany(Category, { through: ProductCategory, foreignKey: 'product_id' });
Category.belongsToMany(Product, { through: ProductCategory, foreignKey: 'category_id' });
dan kuerinya dapat berupa
Product.findAll({
include: [Category]
}).then((res) => {
console.log(res);
})