├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── ormconfig.js ├── package.json ├── src ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── category │ ├── category.graphql │ ├── category.module.ts │ ├── category.resolver.ts │ ├── category.service.ts │ └── entities │ │ └── category.entity.ts ├── generate-typing.ts ├── graphql.schema.ts ├── main.ts ├── product │ ├── entities │ │ └── product.entity.ts │ ├── product.graphql │ ├── product.module.ts │ ├── product.resolver.ts │ └── product.service.ts ├── shared │ ├── auth.gaurd.ts │ ├── date.scalar.ts │ ├── http-error.filter.ts │ ├── logging.interceptor.ts │ ├── shared.graphql │ ├── validation.pipe.ts │ └── votes.enum.ts ├── shop │ ├── entities │ │ └── shop.entity.ts │ ├── shop.graphql │ ├── shop.module.ts │ ├── shop.resolver.ts │ └── shop.service.ts ├── transaction │ ├── entities │ │ └── transaction.entity.ts │ ├── transaction.graphql │ ├── transaction.module.ts │ ├── transaction.resolver.ts │ └── transaction.service.ts └── user │ ├── dto │ ├── create-user.input.ts │ └── update-user.input.ts │ ├── entities │ └── user.entity.ts │ ├── user.graphql │ ├── user.module.ts │ ├── user.resolver.ts │ └── user.service.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/nest-cli.json -------------------------------------------------------------------------------- /ormconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/ormconfig.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/category/category.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/category/category.graphql -------------------------------------------------------------------------------- /src/category/category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/category/category.module.ts -------------------------------------------------------------------------------- /src/category/category.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/category/category.resolver.ts -------------------------------------------------------------------------------- /src/category/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/category/category.service.ts -------------------------------------------------------------------------------- /src/category/entities/category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/category/entities/category.entity.ts -------------------------------------------------------------------------------- /src/generate-typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/generate-typing.ts -------------------------------------------------------------------------------- /src/graphql.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/graphql.schema.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/product/entities/product.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/product/entities/product.entity.ts -------------------------------------------------------------------------------- /src/product/product.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/product/product.graphql -------------------------------------------------------------------------------- /src/product/product.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/product/product.module.ts -------------------------------------------------------------------------------- /src/product/product.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/product/product.resolver.ts -------------------------------------------------------------------------------- /src/product/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/product/product.service.ts -------------------------------------------------------------------------------- /src/shared/auth.gaurd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/auth.gaurd.ts -------------------------------------------------------------------------------- /src/shared/date.scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/date.scalar.ts -------------------------------------------------------------------------------- /src/shared/http-error.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/http-error.filter.ts -------------------------------------------------------------------------------- /src/shared/logging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/logging.interceptor.ts -------------------------------------------------------------------------------- /src/shared/shared.graphql: -------------------------------------------------------------------------------- 1 | scalar Date 2 | -------------------------------------------------------------------------------- /src/shared/validation.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/validation.pipe.ts -------------------------------------------------------------------------------- /src/shared/votes.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shared/votes.enum.ts -------------------------------------------------------------------------------- /src/shop/entities/shop.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shop/entities/shop.entity.ts -------------------------------------------------------------------------------- /src/shop/shop.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shop/shop.graphql -------------------------------------------------------------------------------- /src/shop/shop.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shop/shop.module.ts -------------------------------------------------------------------------------- /src/shop/shop.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shop/shop.resolver.ts -------------------------------------------------------------------------------- /src/shop/shop.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/shop/shop.service.ts -------------------------------------------------------------------------------- /src/transaction/entities/transaction.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/transaction/entities/transaction.entity.ts -------------------------------------------------------------------------------- /src/transaction/transaction.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/transaction/transaction.graphql -------------------------------------------------------------------------------- /src/transaction/transaction.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/transaction/transaction.module.ts -------------------------------------------------------------------------------- /src/transaction/transaction.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/transaction/transaction.resolver.ts -------------------------------------------------------------------------------- /src/transaction/transaction.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/transaction/transaction.service.ts -------------------------------------------------------------------------------- /src/user/dto/create-user.input.ts: -------------------------------------------------------------------------------- 1 | export class CreateUserInput {} 2 | -------------------------------------------------------------------------------- /src/user/dto/update-user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/dto/update-user.input.ts -------------------------------------------------------------------------------- /src/user/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/entities/user.entity.ts -------------------------------------------------------------------------------- /src/user/user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/user.graphql -------------------------------------------------------------------------------- /src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/user.module.ts -------------------------------------------------------------------------------- /src/user/user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/user.resolver.ts -------------------------------------------------------------------------------- /src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/src/user/user.service.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamim-42/Inventory-Management-System---Nestjs-Graphql/HEAD/tsconfig.json --------------------------------------------------------------------------------