const fullUser = await db.User.findOne({
                where: { id },
                attributes: ['id', 'nickname'],
                include: [{
                    model: db.TodoList,
                    attributes: ['id', 'startDate', 'finish'],
                }],
                order: [[{ model: db.TodoList },'startDate', 'ASC']],
            });

include먼저 해주고 나서 order써서 정렬하는 모델을 정해준다

'[Web-BackEnd]' 카테고리의 다른 글

GraphQL 이란  (0) 2020.10.16
자주 사용되는 HTTP상태코드 종류  (0) 2020.05.25

+ Recent posts