├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── docker-compose.yml ├── nest-cli.json ├── package.json ├── process.json ├── schema.gql ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── constants.ts ├── database.spec.ts ├── database │ ├── database.module.ts │ └── database.providers.ts ├── main.ts └── user │ ├── user.input.ts │ ├── user.module.ts │ ├── user.providers.ts │ ├── user.resolver.spec.ts │ ├── user.resolver.ts │ ├── user.schema.ts │ ├── user.service.spec.ts │ └── user.service.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/package.json -------------------------------------------------------------------------------- /process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/process.json -------------------------------------------------------------------------------- /schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/schema.gql -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/database.spec.ts -------------------------------------------------------------------------------- /src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/database/database.module.ts -------------------------------------------------------------------------------- /src/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/database/database.providers.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/user/user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.input.ts -------------------------------------------------------------------------------- /src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.module.ts -------------------------------------------------------------------------------- /src/user/user.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.providers.ts -------------------------------------------------------------------------------- /src/user/user.resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.resolver.spec.ts -------------------------------------------------------------------------------- /src/user/user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.resolver.ts -------------------------------------------------------------------------------- /src/user/user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.schema.ts -------------------------------------------------------------------------------- /src/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/src/user/user.service.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomanagle/GraphQL-NestJS-MongoDB-TypeScript-Tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------