❗❗ ERROR ❗❗

[🚨️ERROR🚨️] Error: Nest can't resolve dependencies of the UserService (?). Please make sure that the argument Repository at index [0] is available in the UserModule context.

성란 2022. 8. 1. 15:34

 ⚠️ Error: Nest can't resolve dependencies of the UserService (?). Please make sure that the argument Repository at index [0] is available in the UserModule context.

의존성주입이 제대로 되지 않았을때 발생하는 에러

 

원인

Service.ts에서 Repository의 의존성주입을 빼먹어서 발생했던 에러.

 

해결

constructor에 Repository를 주입하고 @InjectRepository(타입) 을 빼먹지 않았는 지 확인해보자.