some-dto.ts
export class CreateCatDto {
@ApiProperty()
name: string;
@ApiProperty()
age: number;
@ApiProperty()
breed: string;
}
Я не хочу, чтобы ответ был примерно таким:
@ApiOkResponse(
description: 'Cat object',
type: CreateCatDto
)
, но мой ответ должен быть массивом как объекты Я хочу что-то вроде soo
ApiOkResponse(
description: 'The record has been successfully removed.',
schema: {
type: 'array',
properties: {
obj: {
type: CreateCatDto
}
}
}
)