Здесь я предполагаю, что у вас есть такое определение ассоциации:
Product.belongsToMany(Category,
{ through: ProductCategory, foreignKey: 'productId', otherKey: 'categoryId' })
// Updating associations table HERE
res.addCategories(categories).then(x => {
// categories added successfully to the product
})