-
Graphql Configuration with nest.jsProject using Nest.js/E-commerce App 2021. 9. 2. 09:45
Graphql
이 프로젝트에서는 Graphql을 사용할 것이다. Nest.js에서는 graphql과 TS의 호흡이 정말 좋기 때문이다. nest.js는 apollo-server를 사용한다.
설치
$ npm i @nestjs/graphql graphql apollo-server-express
app.module.ts
app.module.ts에 @Module({})에 GRaphQlModule만 추가하면 끝.
참고 자료
- 노마드 코더의 우버 이츠 클론 강의
- Graphql Ref : https://docs.nestjs.com/graphql/quick-start#getting-started-with-graphql--typescript
'Project using Nest.js > E-commerce App' 카테고리의 다른 글
nestJS entity (0) 2021.09.02 Connect DB which is postgresql with nest.js (0) 2021.09.02 Config에 validation 설정하기 on nest.js with Joi (0) 2021.09.02 nest.js dotenv 설정 (0) 2021.09.02 Nest.js 설치 (0) 2021.09.02