Graphql 테스트
2236 단어 graphqljavascript
Graphql API 코드 요리책
문제
대부분의 API는 미리 정의된 데이터 구조에 액세스하기 위해 엔드포인트를 요청합니다. 다른 리소스에 액세스하려는 경우 다른 끝점을 요청해야 하므로 프로세스가 까다로워집니다.
해결책
GraphQL을 사용하면 웹 API용 쿼리 언어를 사용하여 필요한 데이터만 검색할 수 있습니다.
레시피
Nodejs, Express 및 MongoDB를 사용한 CRUD GraphQL API
src 폴더와 아래의 필수 폴더 및 파일을 만듭니다.
├── src
│ ├── schema
│ │ └── index.js
│ ├── resolvers
│ │ └── index.js
│ └── models
│ └── post.js
├── package-lock.json
├── package.json
└── server.js
종속성 설치
npm 사용
# npm
$ npm install --save express express-graphql graphql body-parser
실 사용
# yarn
$ yarn add --save express express-graphql graphql body-parser
You can also install "nodemon" locally to avoid having to restart your server with each change
$npm install --save-dev nodemon
Also you need to update your "package.json" for using "nodemon".
"scripts": { "start": "nodemon server.js"}
Reference
이 문제에 관하여(Graphql 테스트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dersibcha/graphql-test-282f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)