Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
2 of 4 tasks
wilker7ribeiro opened this issue May 9, 2024 · 8 comments
Closed
2 of 4 tasks

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

wilker7ribeiro opened this issue May 9, 2024 · 8 comments

Comments

@wilker7ribeiro
Copy link

wilker7ribeiro commented May 9, 2024

Is there an existing issue for this?

  • I have searched the existing issues

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?

  • macOS
  • Windows
  • Linux
@kamilmysliwiec
Copy link
Member

Would you like to create a PR for this issue?

@lajerca
Copy link

lajerca commented May 29, 2024

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
Copy link

wonderbeel commented May 31, 2024

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
Copy link

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

@abdulkaderelrawas
Copy link

abdulkaderelrawas commented Aug 15, 2024

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
Copy link

I have same issue.

@sixtusDev
Copy link

I am facing the same issue with array of objects

@kamilmysliwiec
Copy link
Member

#1113

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants