NestJS
NestJS 로 GraphQL Mutation 만들기
https://be-student.tistory.com/21 NestJS 로 GraphQL Query 만들기 https://be-student.tistory.com/20 GraphQL 시작하기 -2 import { HelloResolver } from './hello.resolver'; @Module({ imports: [ GraphQLModule.forRoot ({ driver: ApolloDriver, playground: true, autoSche.. be-student.tistory.com 이전 글을 읽어보시면 좋습니다 여기까지 만들어 졌다면 이제 Mutation은 쉽습니다 import { Field, InputType } from '@nestjs/graphql'; @InputType() expo..