I have four models. namely
- images
- restaurant_items
- restaurant
- item
images.belongsTo (restaurant_items)
Which means I can get all the restaurant_items table details associated with the image like this,
const all_approved_images = await db.images.findAll({
where: {
status: "approved"
},
include: ['res_item']
})
But I want to get the ITEM TABLE AND RESTAURANT TABLE details at the same time
restaurant_items belongs to restaurant
restaurant_items belongs to item
I tried this
const all_approved_images = await db.images.findAll({
where: {
status: "approved"
},
include: ['res_item','res','item']
})
This didn't worked. Says
Association with alias "res" does not exists
of cause it doesn't exists with the images
But it exists with the restaurant_items
There should be a way to link all this things.
How do I achieve this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…