├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── generate-schema.ts ├── index.ts ├── package.json ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | GITHUB_TOKEN=token 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/README.md -------------------------------------------------------------------------------- /generate-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/generate-schema.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borekb/apollo-typescript-example/HEAD/yarn.lock --------------------------------------------------------------------------------