Skip to content
Advertisement

NestJs ParseEnumPipe can’t be resolve

I am using the NestJs framework (love it by the way) and I want to check the incoming data so it conforms with an Enum in Typscript. So I have the following:

JavaScript

The weird thing is that when I run this code, the first pipe gets compiled

JavaScript

What I am doing wrong?

Advertisement

Answer

You should use @Body('action', new ParseEnumPipe(ProductAction)) action: ProductAction because enums aren’t directly reflected for Nest to read the metadata of, and because Nest is otherwise trying to figure out how to inject Object when it really should be injecting the enum.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement