मुझे लगता है कि आपको 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);
})