type enum
https://pjt3591oo.github.io/sequelizejs_translate/build/html/CoreConcepts/DateTypes.html
{ where: { id: id } } 로 수정했더니
{
"message": "Truncated incorrect DOUBLE value: '\xED\x86\xA0\xEC\x8A\xA4\xED\x8A\xB8'"
}
에러 발생
where 옵션에서 id 필드를 문자열 형태로 받아오는 것에서 문제 발생
{ where: { id: Number(id) } } // id 값을 숫자로 변환하여 사용