nestjs / swagger

OpenAPI (Swagger) module for Nest framework (node.js) :earth_americas:
https://nestjs.com
MIT License
1.67k stars 462 forks source link

Wrong swagger generation for @Query with array of objects #2945

Open wilker7ribeiro opened 4 months ago

wilker7ribeiro commented 4 months ago

Is there an existing issue for this?

Current behavior

I want to create a GET endpoint with a inner object inside query params:

export class QueryParamsSubObject {
  @ApiProperty()
  subObjectStringParam: string;
}

export class QueryParams {
  @ApiProperty()
  stringParam: string;

  @ApiProperty({ type: QueryParamsSubObject })
  subObject: QueryParamsSubObject;
}

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @Get('/bugged')
  getHelloBugged(@Query() queryParams: QueryParams): string {
    console.log(queryParams);
    return this.appService.getHello();
  }
}

The swagger definition is bugged, having all parameters from QueryParamsSubObject inside QueryParams instead of QueryParams.subObject:

image

The definition is generated correctly when using @ApiQuery instead of @Query:

@Get('/correct')
@ApiQuery({
  type: QueryParams,
})
getCorrectlyGenerated(): string {
  return this.appService.getHello();
}

image

Minimum reproduction code

Codesandbox https://github.com/wilker7ribeiro/nest-swagger-query-object-param-issue

Steps to reproduce

  1. npm install
  2. npm start
  3. open http://localhost:3000/api

Expected behavior

@Query should correctly generate the swagger definition as @ApiQuery does.

Package version

7.3.1

NestJS version

10.3.2

Node.js version

10.3.2

In which operating systems have you tested?

kamilmysliwiec commented 3 months ago

Would you like to create a PR for this issue?

lajerca commented 3 months ago

I can confirm, same issue here. Actually the title might be misleading since the bug seems to be not limited to arrays but related with properties being in nested objects, including nested in arrays.

wonderbeel commented 3 months ago

Can confirm this issue too, experimenting a little I found out that basically the api generator is flattening too much: I forked OP repro to show it ( https://codesandbox.io/p/github/wonderbeel/nest-swagger-query-object-param-issue/ and https://github.com/wonderbeel/nest-swagger-query-object-param-issue ), as you can see we are basically missing one level of nesting.

satokenta940 commented 3 months ago

Have you resolved the issue yet? I am currently using Apidog to generate API documentation, and it's working well for me.

abdulkaderelrawas commented 3 weeks ago

I have a FilterDto like so

class FilterDto {
  @IsString()
  column: string;

  @IsEnum({
    equals: 'equals',
    neq: 'not',
    gt: 'gt',
    lt: 'lt',
    gte: 'gte',
    lte: 'lte',
    in: 'in',
    nin: 'not',
  })
  operator: string;

  @IsString()
  value: string;
}

and an Query param like so

  @ApiProperty({ type: FilterDto, isArray: true })
  @IsOptional()
  @IsArray()
  @Type(() => FilterDto)
  @ValidateNested({ each: true })
  readonly filters: FilterDto[];

This doesn't generate it right unless i put the FilterDto in an array @ApiProperty({ type: [FilterDto], isArray: true }), and when i do it puts it as an array of arrays instead of array of objects

I tried @ApiProperty({ type: [FilterDto] }), doesn't work I tried to specify the type inside, doesn't work I tried to auto generate it using the plugin in nestcli, doesn't work

any news about this?

marefati110 commented 2 weeks ago

I have same issue.