ValidationPipe() does not work on override @Query in Nestjs/Crud
问题 I'm trying to validate the parameters that come in the query of a get request, but for some reason, the validation pipe is unable to identify the elements of the query. import { Controller, Post, Query, Body, UseInterceptors, Param, Res, Logger, } from '@nestjs/common'; import { Crud, CrudController, Override } from '@nestjsx/crud'; import { OpenScheduleDto } from './open-schedule.dto'; @Crud(Schedule) export class ScheduleController implements CrudController<ScheduleService, Schedule> {