웹/Nodejs
2022. 11. 23.
✅ [NodeJs] Sequelize에서 서브쿼리를 써야할 때!
✅ Sequelize에서 서브쿼리를 써야할 때! // subQuery const setSubQueryCustomer: CustomerSelectListQuery = {}; if (params.ttt) { setSubQueryCustomer.where = { ...setSubQueryCustomer.where, ttt: params.ttt, }; } return new Promise((resolve, reject) => { AlarmList.findAndCountAll({ ...setQuery, attributes: { exclude: ['causeJson'] }, // 해당 필드 제외 include: [ { model: Mobile, attributes: MobileAttributesInclude, },..