├── .dockerignore ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── src ├── __snapshots__ │ └── schema.spec.ts.snap ├── data-base │ └── person-database.ts ├── main.spec.ts ├── main.ts ├── schema.spec.ts └── schema │ ├── index.ts │ └── modules │ ├── person-type.ts │ ├── query.ts │ └── some-type.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !lib/* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/schema.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/__snapshots__/schema.spec.ts.snap -------------------------------------------------------------------------------- /src/data-base/person-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/data-base/person-database.ts -------------------------------------------------------------------------------- /src/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/main.spec.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/schema.spec.ts -------------------------------------------------------------------------------- /src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/schema/index.ts -------------------------------------------------------------------------------- /src/schema/modules/person-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/schema/modules/person-type.ts -------------------------------------------------------------------------------- /src/schema/modules/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/schema/modules/query.ts -------------------------------------------------------------------------------- /src/schema/modules/some-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/src/schema/modules/some-type.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DxCx/webpack-graphql-server/HEAD/yarn.lock --------------------------------------------------------------------------------