Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 25, 2020 13:52
Show Gist options
  • Select an option

  • Save nmchenry01/b2f172951469602a42678eeea30b1160 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/b2f172951469602a42678eeea30b1160 to your computer and use it in GitHub Desktop.
API operations decorators "NestJS with Swagger"
@ApiOkResponse({
description: 'Retrieved task by ID successfully',
type: Task
})
@ApiNotFoundResponse({ description: 'No task found for ID' })
@ApiInternalServerErrorResponse({
description: 'Internal server error',
})
@Get(':id')
getTask(@Param('id') taskId: string): Task {
return this.taskService.getTask(taskId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment