sequelize.col()
を使用して動作させています 関数。
以下は、最終的な/機能するクエリコードです。
try {
let receiptModels = await ReceiptModel.findAll({
raw: true,
attributes: [[Sequelize.col('kiosk.name'), 'Kiosk']],
include: [{
model: Kiosk,
required: false,
as: 'kiosk',
attributes: []
}],
});
return res.json(receiptModels);
}catch(err){
return res.status(500).send({ msg: err.message });
}