Ik denk dat je belongsToMany
associatie hier.
U kunt associatie als volgt definiëren
Product.belongsToMany(Category, { through: ProductCategory, foreignKey: 'product_id' });
Category.belongsToMany(Product, { through: ProductCategory, foreignKey: 'category_id' });
en de vraag kan zijn
Product.findAll({
include: [Category]
}).then((res) => {
console.log(res);
})