Jeg synes, du skal bruge belongsToMany
forening her.
Du kan definere tilknytning sådan her
Product.belongsToMany(Category, { through: ProductCategory, foreignKey: 'product_id' });
Category.belongsToMany(Product, { through: ProductCategory, foreignKey: 'category_id' });
og forespørgslen kan være
Product.findAll({
include: [Category]
}).then((res) => {
console.log(res);
})