Sequelize Top level where with eagerly loaded models creates sub query

白昼怎懂夜的黑 提交于 2019-12-07 15:55:31

what happened here is because you also using order and limit together with eager loading association see the issue

to make it work, there is a little hacky solution, you need to add subQuery: false together to your root model query

let query = {
   where: where,
   order: orderBy,
   distinct: true,
   offset: offset,
   limit: limit,
   subQuery: false,
   include: [...]
};
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!