Open aesopfrom0 opened 3 years ago
Assignee: @aesopfrom0
특정 프로젝트 (board_id)에 속한 user 찾는 문제에서 sequelize 코드 로직이 거꾸로 되었던 것 같습니다.
아래와 같이 작성하여 통과하였습니다. include 안에 where로 하였습니다.
const board_id = req.query.board_id; let participantsNumber = await users.count({ include: [ { model: boards, where: { id: board_id }, }, ], }); console.log("======participantsNumber=========="); console.log(participantsNumber); console.log("==================================");
Task Card
Assignee: @aesopfrom0
Job Description
특정 프로젝트 (board_id)에 속한 user 찾는 문제에서 sequelize 코드 로직이 거꾸로 되었던 것 같습니다.
아래와 같이 작성하여 통과하였습니다. include 안에 where로 하였습니다.
결과물