Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bradtraversy/nestjs_rest_api
/ functions
Functions
16 in github.com/bradtraversy/nestjs_rest_api
⨍
Functions
16
◇
Types & classes
15
↓ 1 callers
Function
bootstrap
()
src/main.ts:4
↓ 1 callers
Method
create
(item: Item)
src/items/items.service.ts:18
↓ 1 callers
Method
getHello
()
src/app.service.ts:5
Method
constructor
(private readonly appService: AppService)
src/app.controller.ts:6
Method
constructor
(@InjectModel('Item') private readonly itemModel: Model<Item>)
src/items/items.service.ts:8
Method
constructor
(private readonly itemsService: ItemsService)
src/items/items.controller.ts:16
Method
create
(@Body() createItemDto: CreateItemDto)
src/items/items.controller.ts:29
Method
delete
(id: string)
src/items/items.service.ts:23
Method
delete
(@Param('id') id)
src/items/items.controller.ts:34
Method
findAll
()
src/items/items.service.ts:10
Method
findAll
()
src/items/items.controller.ts:19
Method
findOne
(id: string)
src/items/items.service.ts:14
Method
findOne
(@Param('id') id)
src/items/items.controller.ts:24
Method
getHello
()
src/app.controller.ts:9
Method
update
(id: string, item: Item)
src/items/items.service.ts:27
Method
update
(@Body() updateItemDto: CreateItemDto, @Param('id') id)
src/items/items.controller.ts:39