MCPcopy
hub / github.com/nestjs/nest / findOne

Method findOne

integration/repl/src/users/users.controller.ts:29–31  ·  view source on GitHub ↗
(@Param('id') id: string)

Source from the content-addressed store, hash-verified

27
28 @Get(':id')
29 findOne(@Param('id') id: string) {
30 return this.usersService.findOne(+id);
31 }
32
33 @Patch(':id')
34 update(@Param('id') id: string, @Body() updateUserDto: UpdateUserDto) {

Callers

nothing calls this directly

Calls 2

ParamFunction · 0.90
findOneMethod · 0.65

Tested by

no test coverage detected