Notice
Recent Posts
Recent Comments
Link
목록GraphQL (1)
보조기억장치
Apollo Server 시작하기
## 프로젝트 생성 mkdir graphql-server-example cd graphql-server-example npm init -y npm pkg set type="module" package.json 파일 생성 { "name": "graphql-server-example", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "type": "module" } ## 종속성 설치 npm install @apollo/server graphq..
GraphQL
2023. 7. 9. 22:15