├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.module.ts ├── main.ts └── users │ ├── dto │ ├── args │ │ ├── get-user.args.ts │ │ └── get-users.args.ts │ └── input │ │ ├── create-user.input.ts │ │ ├── delete-user.input.ts │ │ └── update-user.input.ts │ ├── models │ └── user.ts │ ├── users.module.ts │ ├── users.resolver.ts │ └── users.service.ts ├── test └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/package.json -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/users/dto/args/get-user.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/dto/args/get-user.args.ts -------------------------------------------------------------------------------- /src/users/dto/args/get-users.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/dto/args/get-users.args.ts -------------------------------------------------------------------------------- /src/users/dto/input/create-user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/dto/input/create-user.input.ts -------------------------------------------------------------------------------- /src/users/dto/input/delete-user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/dto/input/delete-user.input.ts -------------------------------------------------------------------------------- /src/users/dto/input/update-user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/dto/input/update-user.input.ts -------------------------------------------------------------------------------- /src/users/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/models/user.ts -------------------------------------------------------------------------------- /src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/users.module.ts -------------------------------------------------------------------------------- /src/users/users.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/users.resolver.ts -------------------------------------------------------------------------------- /src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/src/users/users.service.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mguay22/nestjs-graphql/HEAD/yarn.lock --------------------------------------------------------------------------------