Open-source TypeScript library for validation using TypeScript decorators.
I'm trying to validate nested objects using class-validator and NestJS. I've already tried following this thread by using the @Type …
javascript node.js typescript nestjs class-validatorI want to apply validation on request payload like, there is field name with string type. But name is not …
javascript node.js validation nestjs class-validatorI am using class-validator package with NestJS and I am looking to validate an array of objects that need to …
arrays typescript validation nestjs class-validatorI want to validate body payload using class-validator in a nest.js controller. My currency.dto.ts file is like …
javascript node.js typescript nestjs class-validatorI'm new to NestJS and I am trying to fill a filter DTO from query Parameters. Here is what I …
nestjs class-validator class-transformerI have a array of objects that looks like this [{ name: 'some name' catId: 2, }, { name: 'another name' catId: 3, }] How can …
node.js arrays validation class-validatorI'm trying to find a nice way to validate a body using DTO (using the brilliant class-validator and class-transformer libraries). …
node.js typescript nestjs class-validator class-transformer