관리 메뉴

Mini

[Nest JS] 모든 게시글 조회 본문

JS/Nest.js

[Nest JS] 모든 게시글 조회

Mini_96 2024. 8. 18. 01:42

* 서비스

async getAllBoards(){
  return this.boardRepository.find(); //매개변수없음 -> 모든것 가져옴
}

* 컨트롤러

@Get()
getAllBoard(){
  return this.boardsService.getAllBoards();
}

 

 

결과