You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Christian Ziermann 97ae4bb29b adjust readme 4 years ago
.vscode first commit 4 years ago
src first commit 4 years ago
.gitignore first commit 4 years ago
README.md adjust readme 4 years ago
codegen.yml first commit 4 years ago
graphql.schema.json first commit 4 years ago
nodemon.json first commit 4 years ago
package-lock.json first commit 4 years ago
package.json first commit 4 years ago
tsconfig.json first commit 4 years ago

README.md

Prepation

npm init

See More https://graphql-code-generator.com/docs/getting-started/installation

npm add --save graphql

or

yarn add graphql
npm add --save-dev @graphql-codegen/cli

or

yarn add -D @graphql-codegen/cli
npx graphql-codegen init
npm add --save-dev @graphql-codegen/typescript

or

yarn add -D @graphql-codegen/typescript

Server

npm add apollo-server
npm install @types/node --save-dev
npx tsc --init --rootDir src --outDir build \
--esModuleInterop --resolveJsonModule --lib es6 \
--module commonjs --allowJs true --noImplicitAny true
npm install --save-dev ts-node nodemon rimraf

UI

  • init new Angular project ng new graphql-demo