Skip to content

KunHwanAhn/graphql-ex

Repository files navigation

graphql-ex

GraphQL Sample Project

NOTE: 본 프로젝트는 ABCD(ABout Coding)GraphQL 스터디 문서(#1, #2)를 기반으로 하고 있습니다. 상세한 내용은 해당 문서를 참조하십시오.

NOTE: 본 프로젝트는 GraphQL Server만 포함하고 있는 저장소입니다. 샘플용 Client가 필요하면 Client 저장소인 graphql-client-ex를 참조하시면 됩니다.

개발환경

  • node.js v12
  • yarn v1.21
  • MongoDB v4.2.2

Optional

  • Docker v19.03.5

실행방법

  1. 저장소 Clone

  2. 저장소 안에서 의존성 설치

    $ yarn
    
    # or you can use npm
    $ npm i
  3. MongoDB 설치

  4. 실행

    $ yarn serve
    
    # or you can use npm
    $ npm run serve

GraphQL Client 저장소

graphql-client-ex