├── .drone.yml ├── .env.example ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENCE ├── README.md ├── db-diagram.png ├── db-diagram.svg ├── docker-compose.all.yml ├── docker-compose.db-pga.yml ├── nest-cli.json ├── nestjs-gql-api.code-workspace ├── nodemon-debug.json ├── nodemon.json ├── package.json ├── schema.gql ├── src ├── agreement-status │ ├── agreement-status.model.ts │ ├── agreement-status.module.ts │ ├── agreement-status.providers.ts │ ├── agreement-status.resolver.ts │ ├── agreement-status.service.ts │ └── dto │ │ ├── agreement-status.dto.ts │ │ ├── args │ │ ├── agreement-status-list.args.dto.ts │ │ └── agreement-status.args.dto.ts │ │ └── input │ │ ├── agreement-status-create.input.dto.ts │ │ ├── agreement-status-delete.input.dto.ts │ │ └── agreement-status-update.input.dto.ts ├── agreement │ ├── agreement.model.ts │ ├── agreement.module.ts │ ├── agreement.providers.ts │ ├── agreement.resolver.ts │ ├── agreement.service.ts │ └── dto │ │ ├── agreement.dto.ts │ │ ├── args │ │ ├── agreement-list.args.dto.ts │ │ ├── agreement-numbers-list.args.dto.ts │ │ └── agreement.args.dto.ts │ │ └── input │ │ ├── agreement-create.input.dto.ts │ │ ├── agreement-delete.input.dto.ts │ │ └── agreement-update.input.dto.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── auth.module.ts │ ├── auth.service.ts │ ├── constants.ts │ ├── decorators │ │ └── roles.decorator.ts │ ├── guards │ │ ├── gql-auth.guard.ts │ │ └── roles.guard.ts │ └── jwt.strategy.ts ├── bonus-category │ ├── bonus-category.model.ts │ ├── bonus-category.module.ts │ ├── bonus-category.providers.ts │ ├── bonus-category.resolver.ts │ ├── bonus-category.service.ts │ └── dto │ │ ├── args │ │ ├── bonus-category-list.args.dto.ts │ │ └── bonus-category.args.dto.ts │ │ ├── bonus-category.dto.ts │ │ └── input │ │ ├── bonus-category-create.input.dto.ts │ │ ├── bonus-category-delete.input.dto.ts │ │ └── bonus-category-update.input.dto.ts ├── bonus │ ├── bonus.model.ts │ ├── bonus.module.ts │ ├── bonus.providers.ts │ ├── bonus.resolver.ts │ ├── bonus.service.ts │ └── dto │ │ ├── args │ │ ├── bonus-list.args.dto.ts │ │ └── bonus.args.dto.ts │ │ ├── bonus.dto.ts │ │ └── input │ │ ├── bonus-create.input.dto.ts │ │ ├── bonus-delete.input.dto.ts │ │ └── bonus-update.input.dto.ts ├── city │ ├── city.model.ts │ ├── city.module.ts │ ├── city.providers.ts │ ├── city.resolver.ts │ ├── city.service.ts │ └── dto │ │ ├── args │ │ ├── city-list.args.dto.ts │ │ └── city.args.dto.ts │ │ ├── city.dto.ts │ │ └── input │ │ ├── city-create.input.dto.ts │ │ ├── city-delete.input.dto.ts │ │ └── city-update.input.dto.ts ├── common │ ├── config │ │ ├── databaseConfig.ts │ │ ├── errorMessages.ts │ │ └── interfaces │ │ │ ├── IDatabase.ts │ │ │ └── IErrorMessages.ts │ ├── decorators │ │ ├── check-is-field-unique.decorator.ts │ │ ├── index.ts │ │ └── optimistic-locking.decorator.ts │ ├── error │ │ ├── MessageCodeError.ts │ │ └── index.ts │ ├── filters │ │ ├── DispatchError.ts │ │ └── graphqlError.ts │ ├── interceptors │ │ └── transform.interceptor.ts │ └── pipes │ │ └── string-trim.pipe.ts ├── customer-category │ ├── customer-category.model.ts │ ├── customer-category.module.ts │ ├── customer-category.providers.ts │ ├── customer-category.resolver.ts │ ├── customer-category.service.ts │ └── dto │ │ ├── args │ │ ├── customer-category-list.args.dto.ts │ │ └── customer-category.args.dto.ts │ │ ├── customer-category.dto.ts │ │ └── input │ │ ├── customer-category-create.input.dto.ts │ │ ├── customer-category-delete.input.dto.ts │ │ └── customer-category-update.input.dto.ts ├── customer │ ├── customer.model.ts │ ├── customer.module.ts │ ├── customer.providers.ts │ ├── customer.resolver.ts │ ├── customer.service.ts │ └── dto │ │ ├── args │ │ ├── customer-list.args.dto.ts │ │ └── customer.args.dto.ts │ │ ├── customer.dto.ts │ │ └── input │ │ ├── customer-create.input.dto.ts │ │ ├── customer-delete.input.dto.ts │ │ └── customer-update.input.dto.ts ├── database │ ├── database.module.ts │ └── database.providers.ts ├── district │ ├── district.model.ts │ ├── district.module.ts │ ├── district.providers.ts │ ├── district.resolver.ts │ ├── district.service.ts │ └── dto │ │ ├── args │ │ ├── district-list.args.dto.ts │ │ └── district.args.dto.ts │ │ ├── district.dto.ts │ │ └── input │ │ ├── district-create.input.dto.ts │ │ ├── district-delete.input.dto.ts │ │ └── district-update.input.dto.ts ├── employee-bonus │ ├── dto │ │ ├── args │ │ │ ├── employee-bonus-list.args.dto.ts │ │ │ └── employee-bonus.args.dto.ts │ │ ├── employee-bonus.dto.ts │ │ └── input │ │ │ ├── employee-bonus-create.input.dto.ts │ │ │ ├── employee-bonus-delete.input.dto.ts │ │ │ └── employee-bonus-update.input.dto.ts │ ├── employee-bonus.model.ts │ ├── employee-bonus.module.ts │ ├── employee-bonus.providers.ts │ ├── employee-bonus.resolver.ts │ └── employee-bonus.service.ts ├── employee-position │ ├── dto │ │ ├── args │ │ │ ├── employee-position-list.args.dto.ts │ │ │ └── employee-position.args.dto.ts │ │ ├── employee-position.dto.ts │ │ └── input │ │ │ ├── employee-position-create.input.dto.ts │ │ │ ├── employee-position-delete.input.dto.ts │ │ │ └── employee-position-update.input.dto.ts │ ├── employee-position.model.ts │ ├── employee-position.module.ts │ ├── employee-position.providers.ts │ ├── employee-position.resolver.ts │ └── employee-position.service.ts ├── employee-status │ ├── dto │ │ ├── args │ │ │ ├── employee-status-list.args.dto.ts │ │ │ └── employee-status.args.dto.ts │ │ ├── employee-status.dto.ts │ │ └── input │ │ │ ├── employee-status-create.input.dto.ts │ │ │ ├── employee-status-delete.input.dto.ts │ │ │ └── employee-status-update.input.dto.ts │ ├── employee-status.model.ts │ ├── employee-status.module.ts │ ├── employee-status.providers.ts │ ├── employee-status.resolver.ts │ └── employee-status.service.ts ├── employee-type-job │ ├── dto │ │ └── input │ │ │ ├── employee-type-job-create.input.ts │ │ │ ├── employee-type-job-delete.input.ts │ │ │ └── employee-type-job-update.input.ts │ ├── employee-type-job.model.ts │ ├── employee-type-job.module.ts │ ├── employee-type-job.providers.ts │ └── employee-type-job.service.ts ├── employee │ ├── dto │ │ ├── args │ │ │ ├── employee-list.args.dto.ts │ │ │ └── employee.args.dto.ts │ │ ├── employee.dto.ts │ │ └── input │ │ │ ├── employee-create.input.dto.ts │ │ │ ├── employee-delete.input.dto.ts │ │ │ └── employee-update.input.dto.ts │ ├── employee.model.ts │ ├── employee.module.ts │ ├── employee.providers.ts │ ├── employee.resolver.ts │ └── employee.service.ts ├── execution-status │ ├── dto │ │ ├── args │ │ │ ├── execution-status-list.args.dto.ts │ │ │ └── execution-status.args.dto.ts │ │ ├── execution-status.dto.ts │ │ └── input │ │ │ ├── execution-status-create.input.dto.ts │ │ │ ├── execution-status-delete.input.dto.ts │ │ │ └── execution-status-update.input.dto.ts │ ├── execution-status.model.ts │ ├── execution-status.module.ts │ ├── execution-status.providers.ts │ ├── execution-status.resolver.ts │ └── execution-status.service.ts ├── family-status │ ├── dto │ │ ├── args │ │ │ ├── family-status-list.args.dto.ts │ │ │ └── family-status.args.dto.ts │ │ ├── family-status.dto.ts │ │ └── input │ │ │ ├── family-status-create.input.dto.ts │ │ │ ├── family-status-delete.input.dto.ts │ │ │ └── family-status-update.input.dto.ts │ ├── family-status.model.ts │ ├── family-status.module.ts │ ├── family-status.providers.ts │ ├── family-status.resolver.ts │ └── family-status.service.ts ├── main.ts ├── operation-mode │ ├── dto │ │ ├── args │ │ │ ├── operation-mode-list.args.dto.ts │ │ │ └── operation-mode.args.dto.ts │ │ ├── input │ │ │ ├── operation-mode-create.input.dto.ts │ │ │ ├── operation-mode-delete.input.dto.ts │ │ │ └── operation-mode-update.input.dto.ts │ │ └── operation-mode.dto.ts │ ├── operation-mode.model.ts │ ├── operation-mode.module.ts │ ├── operation-mode.providers.ts │ ├── operation-mode.resolver.ts │ └── operation-mode.service.ts ├── payment-form │ ├── dto │ │ ├── args │ │ │ ├── payment-form-list.args.dto.ts │ │ │ └── payment-form.args.dto.ts │ │ ├── input │ │ │ ├── payment-form-create.input.dto.ts │ │ │ ├── payment-form-delete.input.dto.ts │ │ │ └── payment-form-update.input.dto.ts │ │ └── payment-form.dto.ts │ ├── payment-form.model.ts │ ├── payment-form.module.ts │ ├── payment-form.providers.ts │ ├── payment-form.resolver.ts │ └── payment-form.service.ts ├── payment-status │ ├── dto │ │ ├── args │ │ │ ├── payment-status-list.args.dto.ts │ │ │ └── payment-status.args.dto.ts │ │ ├── input │ │ │ ├── payment-status-create.input.dto.ts │ │ │ ├── payment-status-delete.input.dto.ts │ │ │ └── payment-status-update.input.dto.ts │ │ └── payment-status.dto.ts │ ├── payment-status.model.ts │ ├── payment-status.module.ts │ ├── payment-status.providers.ts │ ├── payment-status.resolver.ts │ └── payment-status.service.ts ├── position │ ├── dto │ │ ├── args │ │ │ ├── position-list.args.dto.ts │ │ │ └── position.args.dto.ts │ │ ├── input │ │ │ ├── position-create.input.dto.ts │ │ │ ├── position-delete.input.dto.ts │ │ │ └── position-update.input.dto.ts │ │ └── position.dto.ts │ ├── position.model.ts │ ├── position.module.ts │ ├── position.providers.ts │ ├── position.resolver.ts │ └── position.service.ts ├── quarter │ ├── dto │ │ ├── args │ │ │ ├── quarter-list.args.dto.ts │ │ │ └── quarter.args.dto.ts │ │ ├── input │ │ │ ├── quarter-create.input.dto.ts │ │ │ ├── quarter-delete.input.dto.ts │ │ │ └── quarter-update.input.dto.ts │ │ └── quarter.dto.ts │ ├── quarter.model.ts │ ├── quarter.module.ts │ ├── quarter.providers.ts │ ├── quarter.resolver.ts │ └── quarter.service.ts ├── service-category │ ├── dto │ │ ├── args │ │ │ ├── service-category-list.args.dto.ts │ │ │ └── service-category.args.dto.ts │ │ ├── input │ │ │ ├── service-category-create.input.dto.ts │ │ │ ├── service-category-delete.input.dto.ts │ │ │ └── service-category-update.input.dto.ts │ │ └── service-category.dto.ts │ ├── service-category.model.ts │ ├── service-category.module.ts │ ├── service-category.providers.ts │ ├── service-category.resolver.ts │ └── service-category.service.ts ├── service-grid │ ├── dto │ │ ├── args │ │ │ ├── service-grid-list.args.dto.ts │ │ │ └── service-grid.args.dto.ts │ │ ├── input │ │ │ ├── service-grid-create.input.dto.ts │ │ │ ├── service-grid-delete.input.dto.ts │ │ │ └── service-grid-update.input.dto.ts │ │ └── service-grid.dto.ts │ ├── service-grid.model.ts │ ├── service-grid.module.ts │ ├── service-grid.providers.ts │ ├── service-grid.resolver.ts │ └── service-grid.service.ts ├── service-guide │ ├── dto │ │ ├── args │ │ │ ├── service-guide-list.args.dto.ts │ │ │ └── service-guide.args.dto.ts │ │ ├── input │ │ │ ├── service-guide-create.input.dto.ts │ │ │ ├── service-guide-delete.input.dto.ts │ │ │ └── service-guide-update.input.dto.ts │ │ └── service-guide.dto.ts │ ├── service-guide.model.ts │ ├── service-guide.module.ts │ ├── service-guide.providers.ts │ ├── service-guide.resolver.ts │ └── service-guide.service.ts ├── service-pack │ ├── dto │ │ ├── args │ │ │ ├── service-pack-list.args.dto.ts │ │ │ └── service-pack.args.dto.ts │ │ ├── input │ │ │ ├── service-pack-create.input.dto.ts │ │ │ ├── service-pack-delete.input.dto.ts │ │ │ └── service-pack-update.input.dto.ts │ │ └── service-pack.dto.ts │ ├── service-pack.model.ts │ ├── service-pack.module.ts │ ├── service-pack.providers.ts │ ├── service-pack.resolver.ts │ └── service-pack.service.ts ├── session │ ├── dto │ │ ├── args │ │ │ └── session.args.dto.ts │ │ ├── inputs │ │ │ ├── session-create.input.dto.ts │ │ │ └── session-update.input.dto.ts │ │ └── session.dto.ts │ ├── session.model.ts │ ├── session.module.ts │ ├── session.providers.ts │ ├── session.resolver.ts │ ├── session.service.ts │ └── session.types.ts ├── social-status │ ├── dto │ │ ├── args │ │ │ ├── social-status-list.args.dto.ts │ │ │ └── social-status.args.dto.ts │ │ ├── input │ │ │ ├── social-status-create.input.dto.ts │ │ │ ├── social-status-delete.input.dto.ts │ │ │ └── social-status-update.input.dto.ts │ │ └── social-status.dto.ts │ ├── social-status.model.ts │ ├── social-status.module.ts │ ├── social-status.providers.ts │ ├── social-status.resolver.ts │ └── social-status.service.ts ├── subject-category │ ├── dto │ │ ├── args │ │ │ ├── subject-category-list.args.dto.ts │ │ │ └── subject-category.args.dto.ts │ │ ├── input │ │ │ ├── subject-category-create.input.dto.ts │ │ │ ├── subject-category-delete.input.dto.ts │ │ │ └── subject-category-update.input.dto.ts │ │ └── subject-category.dto.ts │ ├── subject-category.model.ts │ ├── subject-category.module.ts │ ├── subject-category.providers.ts │ ├── subject-category.resolver.ts │ └── subject-category.service.ts ├── subject │ ├── dto │ │ ├── args │ │ │ ├── subject-list.args.dto.ts │ │ │ └── subject.args.dto.ts │ │ ├── input │ │ │ ├── subject-create.input.dto.ts │ │ │ ├── subject-delete.input.dto.ts │ │ │ └── subject-update.input.dto.ts │ │ └── subject.dto.ts │ ├── subject.model.ts │ ├── subject.module.ts │ ├── subject.providers.ts │ ├── subject.resolver.ts │ └── subject.service.ts ├── type-job │ ├── dto │ │ ├── args │ │ │ ├── type-job-list.args.dto.ts │ │ │ └── type-job.args.dto.ts │ │ ├── input │ │ │ ├── type-job-create.input.dto.ts │ │ │ ├── type-job-delete.input.dto.ts │ │ │ └── type-job-update.input.dto.ts │ │ └── type-job.dto.ts │ ├── type-job.model.ts │ ├── type-job.module.ts │ ├── type-job.providers.ts │ ├── type-job.resolver.ts │ └── type-job.service.ts ├── user-role │ ├── dto │ │ ├── args │ │ │ ├── user-role-list.args.dto.ts │ │ │ ├── user-role.args.dto.ts │ │ │ └── user-roles.args.dto.ts │ │ ├── input │ │ │ ├── user-role-create.input.dto.ts │ │ │ ├── user-role-delete.input.dto.ts │ │ │ └── user-role-update.input.dto.ts │ │ └── user-role.dto.ts │ ├── user-role.model.ts │ ├── user-role.module.ts │ ├── user-role.providers.ts │ ├── user-role.resolver.ts │ └── user-role.service.ts ├── user │ ├── dto │ │ ├── args │ │ │ ├── user-find.args.dto.ts │ │ │ ├── user-list.args.dto.ts │ │ │ └── user.args.dto.ts │ │ ├── input │ │ │ ├── user-create.input.dto.ts │ │ │ ├── user-delete.input.dto.ts │ │ │ └── user-update.input.dto.ts │ │ └── user.dto.ts │ ├── user.decorator.ts │ ├── user.model.ts │ ├── user.module.ts │ ├── user.providers.ts │ ├── user.resolver.ts │ └── user.service.ts ├── ward-social-status │ ├── dto │ │ └── input │ │ │ ├── ward-social-status-create.input.dto.ts │ │ │ ├── ward-social-status-delete.input.dto.ts │ │ │ └── ward-social-status-update.input.dto.ts │ ├── ward-social-status.model.ts │ ├── ward-social-status.module.ts │ ├── ward-social-status.providers.ts │ └── ward-social-status.service.ts ├── ward-stage-progress │ ├── dto │ │ ├── args │ │ │ ├── ward-stage-progress-list.args.dto.ts │ │ │ └── ward-stage-progress.args.dto.ts │ │ ├── input │ │ │ ├── ward-stage-progress-create.input.dto.ts │ │ │ ├── ward-stage-progress-delete.input.dto.ts │ │ │ └── ward-stage-progress-update.input.dto.ts │ │ └── ward-stage-progress.dto.ts │ ├── ward-stage-progress.model.ts │ ├── ward-stage-progress.module.ts │ ├── ward-stage-progress.providers.ts │ ├── ward-stage-progress.resolver.ts │ └── ward-stage-progress.service.ts ├── ward-stage │ ├── dto │ │ ├── args │ │ │ ├── ward-stage-list.args.dto.ts │ │ │ └── ward-stage.args.dto.ts │ │ ├── input │ │ │ ├── ward-stage-create.input.dto.ts │ │ │ ├── ward-stage-delete.input.dto.ts │ │ │ └── ward-stage-update.input.dto.ts │ │ └── ward-stage.dto.ts │ ├── ward-stage.model.ts │ ├── ward-stage.module.ts │ ├── ward-stage.providers.ts │ ├── ward-stage.resolver.ts │ └── ward-stage.service.ts ├── ward │ ├── dto │ │ ├── args │ │ │ ├── ward-list.args.dto.ts │ │ │ └── ward.args.dto.ts │ │ ├── input │ │ │ ├── ward-create.input.dto.ts │ │ │ ├── ward-delete.input.dto.ts │ │ │ └── ward-update.input.dto.ts │ │ └── ward.dto.ts │ ├── ward.model.ts │ ├── ward.module.ts │ ├── ward.providers.ts │ ├── ward.resolver.ts │ └── ward.service.ts └── what-about-us │ ├── dto │ ├── args │ │ ├── what-about-us-list.args.dto.ts │ │ └── what-about-us.args.dto.ts │ ├── input │ │ ├── what-about-us-create.input.dto.ts │ │ ├── what-about-us-delete.input.dto.ts │ │ └── what-about-us-update.input.dto.ts │ └── what-about-us.dto.ts │ ├── what-about-us.model.ts │ ├── what-about-us.module.ts │ ├── what-about-us.providers.ts │ ├── what-about-us.resolver.ts │ └── what-about-us.service.ts ├── start-containers.all.sh ├── start-containers.db-pga.sh ├── start-node.sh ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json ├── valentina-studio-db-diag.xml └── yarn.lock /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.drone.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/README.md -------------------------------------------------------------------------------- /db-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/db-diagram.png -------------------------------------------------------------------------------- /db-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/db-diagram.svg -------------------------------------------------------------------------------- /docker-compose.all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/docker-compose.all.yml -------------------------------------------------------------------------------- /docker-compose.db-pga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/docker-compose.db-pga.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/nest-cli.json -------------------------------------------------------------------------------- /nestjs-gql-api.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/nestjs-gql-api.code-workspace -------------------------------------------------------------------------------- /nodemon-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/nodemon-debug.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/package.json -------------------------------------------------------------------------------- /schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/schema.gql -------------------------------------------------------------------------------- /src/agreement-status/agreement-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/agreement-status.model.ts -------------------------------------------------------------------------------- /src/agreement-status/agreement-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/agreement-status.module.ts -------------------------------------------------------------------------------- /src/agreement-status/agreement-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/agreement-status.providers.ts -------------------------------------------------------------------------------- /src/agreement-status/agreement-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/agreement-status.resolver.ts -------------------------------------------------------------------------------- /src/agreement-status/agreement-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/agreement-status.service.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/agreement-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/agreement-status.dto.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/args/agreement-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/args/agreement-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/args/agreement-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/args/agreement-status.args.dto.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/input/agreement-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/input/agreement-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/input/agreement-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/input/agreement-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/agreement-status/dto/input/agreement-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement-status/dto/input/agreement-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/agreement/agreement.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/agreement.model.ts -------------------------------------------------------------------------------- /src/agreement/agreement.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/agreement.module.ts -------------------------------------------------------------------------------- /src/agreement/agreement.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/agreement.providers.ts -------------------------------------------------------------------------------- /src/agreement/agreement.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/agreement.resolver.ts -------------------------------------------------------------------------------- /src/agreement/agreement.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/agreement.service.ts -------------------------------------------------------------------------------- /src/agreement/dto/agreement.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/agreement.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/args/agreement-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/args/agreement-list.args.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/args/agreement-numbers-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/args/agreement-numbers-list.args.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/args/agreement.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/args/agreement.args.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/input/agreement-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/input/agreement-create.input.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/input/agreement-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/input/agreement-delete.input.dto.ts -------------------------------------------------------------------------------- /src/agreement/dto/input/agreement-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/agreement/dto/input/agreement-update.input.dto.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/auth.service.ts -------------------------------------------------------------------------------- /src/auth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/constants.ts -------------------------------------------------------------------------------- /src/auth/decorators/roles.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/decorators/roles.decorator.ts -------------------------------------------------------------------------------- /src/auth/guards/gql-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/guards/gql-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/guards/roles.guard.ts -------------------------------------------------------------------------------- /src/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /src/bonus-category/bonus-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/bonus-category.model.ts -------------------------------------------------------------------------------- /src/bonus-category/bonus-category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/bonus-category.module.ts -------------------------------------------------------------------------------- /src/bonus-category/bonus-category.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/bonus-category.providers.ts -------------------------------------------------------------------------------- /src/bonus-category/bonus-category.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/bonus-category.resolver.ts -------------------------------------------------------------------------------- /src/bonus-category/bonus-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/bonus-category.service.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/args/bonus-category-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/args/bonus-category-list.args.dto.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/args/bonus-category.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/args/bonus-category.args.dto.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/bonus-category.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/bonus-category.dto.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/input/bonus-category-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/input/bonus-category-create.input.dto.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/input/bonus-category-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/input/bonus-category-delete.input.dto.ts -------------------------------------------------------------------------------- /src/bonus-category/dto/input/bonus-category-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus-category/dto/input/bonus-category-update.input.dto.ts -------------------------------------------------------------------------------- /src/bonus/bonus.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/bonus.model.ts -------------------------------------------------------------------------------- /src/bonus/bonus.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/bonus.module.ts -------------------------------------------------------------------------------- /src/bonus/bonus.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/bonus.providers.ts -------------------------------------------------------------------------------- /src/bonus/bonus.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/bonus.resolver.ts -------------------------------------------------------------------------------- /src/bonus/bonus.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/bonus.service.ts -------------------------------------------------------------------------------- /src/bonus/dto/args/bonus-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/args/bonus-list.args.dto.ts -------------------------------------------------------------------------------- /src/bonus/dto/args/bonus.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/args/bonus.args.dto.ts -------------------------------------------------------------------------------- /src/bonus/dto/bonus.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/bonus.dto.ts -------------------------------------------------------------------------------- /src/bonus/dto/input/bonus-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/input/bonus-create.input.dto.ts -------------------------------------------------------------------------------- /src/bonus/dto/input/bonus-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/input/bonus-delete.input.dto.ts -------------------------------------------------------------------------------- /src/bonus/dto/input/bonus-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/bonus/dto/input/bonus-update.input.dto.ts -------------------------------------------------------------------------------- /src/city/city.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/city.model.ts -------------------------------------------------------------------------------- /src/city/city.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/city.module.ts -------------------------------------------------------------------------------- /src/city/city.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/city.providers.ts -------------------------------------------------------------------------------- /src/city/city.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/city.resolver.ts -------------------------------------------------------------------------------- /src/city/city.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/city.service.ts -------------------------------------------------------------------------------- /src/city/dto/args/city-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/args/city-list.args.dto.ts -------------------------------------------------------------------------------- /src/city/dto/args/city.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/args/city.args.dto.ts -------------------------------------------------------------------------------- /src/city/dto/city.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/city.dto.ts -------------------------------------------------------------------------------- /src/city/dto/input/city-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/input/city-create.input.dto.ts -------------------------------------------------------------------------------- /src/city/dto/input/city-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/input/city-delete.input.dto.ts -------------------------------------------------------------------------------- /src/city/dto/input/city-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/city/dto/input/city-update.input.dto.ts -------------------------------------------------------------------------------- /src/common/config/databaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/config/databaseConfig.ts -------------------------------------------------------------------------------- /src/common/config/errorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/config/errorMessages.ts -------------------------------------------------------------------------------- /src/common/config/interfaces/IDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/config/interfaces/IDatabase.ts -------------------------------------------------------------------------------- /src/common/config/interfaces/IErrorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/config/interfaces/IErrorMessages.ts -------------------------------------------------------------------------------- /src/common/decorators/check-is-field-unique.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/decorators/check-is-field-unique.decorator.ts -------------------------------------------------------------------------------- /src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/decorators/index.ts -------------------------------------------------------------------------------- /src/common/decorators/optimistic-locking.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/decorators/optimistic-locking.decorator.ts -------------------------------------------------------------------------------- /src/common/error/MessageCodeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/error/MessageCodeError.ts -------------------------------------------------------------------------------- /src/common/error/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MessageCodeError'; 2 | -------------------------------------------------------------------------------- /src/common/filters/DispatchError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/filters/DispatchError.ts -------------------------------------------------------------------------------- /src/common/filters/graphqlError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/filters/graphqlError.ts -------------------------------------------------------------------------------- /src/common/interceptors/transform.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/interceptors/transform.interceptor.ts -------------------------------------------------------------------------------- /src/common/pipes/string-trim.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/common/pipes/string-trim.pipe.ts -------------------------------------------------------------------------------- /src/customer-category/customer-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/customer-category.model.ts -------------------------------------------------------------------------------- /src/customer-category/customer-category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/customer-category.module.ts -------------------------------------------------------------------------------- /src/customer-category/customer-category.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/customer-category.providers.ts -------------------------------------------------------------------------------- /src/customer-category/customer-category.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/customer-category.resolver.ts -------------------------------------------------------------------------------- /src/customer-category/customer-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/customer-category.service.ts -------------------------------------------------------------------------------- /src/customer-category/dto/args/customer-category-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/args/customer-category-list.args.dto.ts -------------------------------------------------------------------------------- /src/customer-category/dto/args/customer-category.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/args/customer-category.args.dto.ts -------------------------------------------------------------------------------- /src/customer-category/dto/customer-category.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/customer-category.dto.ts -------------------------------------------------------------------------------- /src/customer-category/dto/input/customer-category-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/input/customer-category-create.input.dto.ts -------------------------------------------------------------------------------- /src/customer-category/dto/input/customer-category-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/input/customer-category-delete.input.dto.ts -------------------------------------------------------------------------------- /src/customer-category/dto/input/customer-category-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer-category/dto/input/customer-category-update.input.dto.ts -------------------------------------------------------------------------------- /src/customer/customer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/customer.model.ts -------------------------------------------------------------------------------- /src/customer/customer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/customer.module.ts -------------------------------------------------------------------------------- /src/customer/customer.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/customer.providers.ts -------------------------------------------------------------------------------- /src/customer/customer.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/customer.resolver.ts -------------------------------------------------------------------------------- /src/customer/customer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/customer.service.ts -------------------------------------------------------------------------------- /src/customer/dto/args/customer-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/args/customer-list.args.dto.ts -------------------------------------------------------------------------------- /src/customer/dto/args/customer.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/args/customer.args.dto.ts -------------------------------------------------------------------------------- /src/customer/dto/customer.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/customer.dto.ts -------------------------------------------------------------------------------- /src/customer/dto/input/customer-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/input/customer-create.input.dto.ts -------------------------------------------------------------------------------- /src/customer/dto/input/customer-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/input/customer-delete.input.dto.ts -------------------------------------------------------------------------------- /src/customer/dto/input/customer-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/customer/dto/input/customer-update.input.dto.ts -------------------------------------------------------------------------------- /src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/database/database.module.ts -------------------------------------------------------------------------------- /src/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/database/database.providers.ts -------------------------------------------------------------------------------- /src/district/district.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/district.model.ts -------------------------------------------------------------------------------- /src/district/district.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/district.module.ts -------------------------------------------------------------------------------- /src/district/district.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/district.providers.ts -------------------------------------------------------------------------------- /src/district/district.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/district.resolver.ts -------------------------------------------------------------------------------- /src/district/district.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/district.service.ts -------------------------------------------------------------------------------- /src/district/dto/args/district-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/args/district-list.args.dto.ts -------------------------------------------------------------------------------- /src/district/dto/args/district.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/args/district.args.dto.ts -------------------------------------------------------------------------------- /src/district/dto/district.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/district.dto.ts -------------------------------------------------------------------------------- /src/district/dto/input/district-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/input/district-create.input.dto.ts -------------------------------------------------------------------------------- /src/district/dto/input/district-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/input/district-delete.input.dto.ts -------------------------------------------------------------------------------- /src/district/dto/input/district-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/district/dto/input/district-update.input.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/args/employee-bonus-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/args/employee-bonus-list.args.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/args/employee-bonus.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/args/employee-bonus.args.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/employee-bonus.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/employee-bonus.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/input/employee-bonus-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/input/employee-bonus-create.input.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/input/employee-bonus-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/input/employee-bonus-delete.input.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/dto/input/employee-bonus-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/dto/input/employee-bonus-update.input.dto.ts -------------------------------------------------------------------------------- /src/employee-bonus/employee-bonus.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/employee-bonus.model.ts -------------------------------------------------------------------------------- /src/employee-bonus/employee-bonus.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/employee-bonus.module.ts -------------------------------------------------------------------------------- /src/employee-bonus/employee-bonus.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/employee-bonus.providers.ts -------------------------------------------------------------------------------- /src/employee-bonus/employee-bonus.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/employee-bonus.resolver.ts -------------------------------------------------------------------------------- /src/employee-bonus/employee-bonus.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-bonus/employee-bonus.service.ts -------------------------------------------------------------------------------- /src/employee-position/dto/args/employee-position-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/args/employee-position-list.args.dto.ts -------------------------------------------------------------------------------- /src/employee-position/dto/args/employee-position.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/args/employee-position.args.dto.ts -------------------------------------------------------------------------------- /src/employee-position/dto/employee-position.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/employee-position.dto.ts -------------------------------------------------------------------------------- /src/employee-position/dto/input/employee-position-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/input/employee-position-create.input.dto.ts -------------------------------------------------------------------------------- /src/employee-position/dto/input/employee-position-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/input/employee-position-delete.input.dto.ts -------------------------------------------------------------------------------- /src/employee-position/dto/input/employee-position-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/dto/input/employee-position-update.input.dto.ts -------------------------------------------------------------------------------- /src/employee-position/employee-position.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/employee-position.model.ts -------------------------------------------------------------------------------- /src/employee-position/employee-position.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/employee-position.module.ts -------------------------------------------------------------------------------- /src/employee-position/employee-position.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/employee-position.providers.ts -------------------------------------------------------------------------------- /src/employee-position/employee-position.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/employee-position.resolver.ts -------------------------------------------------------------------------------- /src/employee-position/employee-position.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-position/employee-position.service.ts -------------------------------------------------------------------------------- /src/employee-status/dto/args/employee-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/args/employee-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/employee-status/dto/args/employee-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/args/employee-status.args.dto.ts -------------------------------------------------------------------------------- /src/employee-status/dto/employee-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/employee-status.dto.ts -------------------------------------------------------------------------------- /src/employee-status/dto/input/employee-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/input/employee-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/employee-status/dto/input/employee-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/input/employee-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/employee-status/dto/input/employee-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/dto/input/employee-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/employee-status/employee-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/employee-status.model.ts -------------------------------------------------------------------------------- /src/employee-status/employee-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/employee-status.module.ts -------------------------------------------------------------------------------- /src/employee-status/employee-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/employee-status.providers.ts -------------------------------------------------------------------------------- /src/employee-status/employee-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/employee-status.resolver.ts -------------------------------------------------------------------------------- /src/employee-status/employee-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-status/employee-status.service.ts -------------------------------------------------------------------------------- /src/employee-type-job/dto/input/employee-type-job-create.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/dto/input/employee-type-job-create.input.ts -------------------------------------------------------------------------------- /src/employee-type-job/dto/input/employee-type-job-delete.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/dto/input/employee-type-job-delete.input.ts -------------------------------------------------------------------------------- /src/employee-type-job/dto/input/employee-type-job-update.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/dto/input/employee-type-job-update.input.ts -------------------------------------------------------------------------------- /src/employee-type-job/employee-type-job.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/employee-type-job.model.ts -------------------------------------------------------------------------------- /src/employee-type-job/employee-type-job.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/employee-type-job.module.ts -------------------------------------------------------------------------------- /src/employee-type-job/employee-type-job.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/employee-type-job.providers.ts -------------------------------------------------------------------------------- /src/employee-type-job/employee-type-job.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee-type-job/employee-type-job.service.ts -------------------------------------------------------------------------------- /src/employee/dto/args/employee-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/args/employee-list.args.dto.ts -------------------------------------------------------------------------------- /src/employee/dto/args/employee.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/args/employee.args.dto.ts -------------------------------------------------------------------------------- /src/employee/dto/employee.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/employee.dto.ts -------------------------------------------------------------------------------- /src/employee/dto/input/employee-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/input/employee-create.input.dto.ts -------------------------------------------------------------------------------- /src/employee/dto/input/employee-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/input/employee-delete.input.dto.ts -------------------------------------------------------------------------------- /src/employee/dto/input/employee-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/dto/input/employee-update.input.dto.ts -------------------------------------------------------------------------------- /src/employee/employee.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/employee.model.ts -------------------------------------------------------------------------------- /src/employee/employee.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/employee.module.ts -------------------------------------------------------------------------------- /src/employee/employee.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/employee.providers.ts -------------------------------------------------------------------------------- /src/employee/employee.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/employee.resolver.ts -------------------------------------------------------------------------------- /src/employee/employee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/employee/employee.service.ts -------------------------------------------------------------------------------- /src/execution-status/dto/args/execution-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/args/execution-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/execution-status/dto/args/execution-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/args/execution-status.args.dto.ts -------------------------------------------------------------------------------- /src/execution-status/dto/execution-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/execution-status.dto.ts -------------------------------------------------------------------------------- /src/execution-status/dto/input/execution-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/input/execution-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/execution-status/dto/input/execution-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/input/execution-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/execution-status/dto/input/execution-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/dto/input/execution-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/execution-status/execution-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/execution-status.model.ts -------------------------------------------------------------------------------- /src/execution-status/execution-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/execution-status.module.ts -------------------------------------------------------------------------------- /src/execution-status/execution-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/execution-status.providers.ts -------------------------------------------------------------------------------- /src/execution-status/execution-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/execution-status.resolver.ts -------------------------------------------------------------------------------- /src/execution-status/execution-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/execution-status/execution-status.service.ts -------------------------------------------------------------------------------- /src/family-status/dto/args/family-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/args/family-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/family-status/dto/args/family-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/args/family-status.args.dto.ts -------------------------------------------------------------------------------- /src/family-status/dto/family-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/family-status.dto.ts -------------------------------------------------------------------------------- /src/family-status/dto/input/family-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/input/family-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/family-status/dto/input/family-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/input/family-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/family-status/dto/input/family-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/dto/input/family-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/family-status/family-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/family-status.model.ts -------------------------------------------------------------------------------- /src/family-status/family-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/family-status.module.ts -------------------------------------------------------------------------------- /src/family-status/family-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/family-status.providers.ts -------------------------------------------------------------------------------- /src/family-status/family-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/family-status.resolver.ts -------------------------------------------------------------------------------- /src/family-status/family-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/family-status/family-status.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/args/operation-mode-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/args/operation-mode-list.args.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/args/operation-mode.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/args/operation-mode.args.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/input/operation-mode-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/input/operation-mode-create.input.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/input/operation-mode-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/input/operation-mode-delete.input.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/input/operation-mode-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/input/operation-mode-update.input.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/dto/operation-mode.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/dto/operation-mode.dto.ts -------------------------------------------------------------------------------- /src/operation-mode/operation-mode.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/operation-mode.model.ts -------------------------------------------------------------------------------- /src/operation-mode/operation-mode.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/operation-mode.module.ts -------------------------------------------------------------------------------- /src/operation-mode/operation-mode.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/operation-mode.providers.ts -------------------------------------------------------------------------------- /src/operation-mode/operation-mode.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/operation-mode.resolver.ts -------------------------------------------------------------------------------- /src/operation-mode/operation-mode.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/operation-mode/operation-mode.service.ts -------------------------------------------------------------------------------- /src/payment-form/dto/args/payment-form-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/args/payment-form-list.args.dto.ts -------------------------------------------------------------------------------- /src/payment-form/dto/args/payment-form.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/args/payment-form.args.dto.ts -------------------------------------------------------------------------------- /src/payment-form/dto/input/payment-form-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/input/payment-form-create.input.dto.ts -------------------------------------------------------------------------------- /src/payment-form/dto/input/payment-form-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/input/payment-form-delete.input.dto.ts -------------------------------------------------------------------------------- /src/payment-form/dto/input/payment-form-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/input/payment-form-update.input.dto.ts -------------------------------------------------------------------------------- /src/payment-form/dto/payment-form.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/dto/payment-form.dto.ts -------------------------------------------------------------------------------- /src/payment-form/payment-form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/payment-form.model.ts -------------------------------------------------------------------------------- /src/payment-form/payment-form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/payment-form.module.ts -------------------------------------------------------------------------------- /src/payment-form/payment-form.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/payment-form.providers.ts -------------------------------------------------------------------------------- /src/payment-form/payment-form.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/payment-form.resolver.ts -------------------------------------------------------------------------------- /src/payment-form/payment-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-form/payment-form.service.ts -------------------------------------------------------------------------------- /src/payment-status/dto/args/payment-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/args/payment-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/payment-status/dto/args/payment-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/args/payment-status.args.dto.ts -------------------------------------------------------------------------------- /src/payment-status/dto/input/payment-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/input/payment-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/payment-status/dto/input/payment-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/input/payment-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/payment-status/dto/input/payment-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/input/payment-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/payment-status/dto/payment-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/dto/payment-status.dto.ts -------------------------------------------------------------------------------- /src/payment-status/payment-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/payment-status.model.ts -------------------------------------------------------------------------------- /src/payment-status/payment-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/payment-status.module.ts -------------------------------------------------------------------------------- /src/payment-status/payment-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/payment-status.providers.ts -------------------------------------------------------------------------------- /src/payment-status/payment-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/payment-status.resolver.ts -------------------------------------------------------------------------------- /src/payment-status/payment-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/payment-status/payment-status.service.ts -------------------------------------------------------------------------------- /src/position/dto/args/position-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/args/position-list.args.dto.ts -------------------------------------------------------------------------------- /src/position/dto/args/position.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/args/position.args.dto.ts -------------------------------------------------------------------------------- /src/position/dto/input/position-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/input/position-create.input.dto.ts -------------------------------------------------------------------------------- /src/position/dto/input/position-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/input/position-delete.input.dto.ts -------------------------------------------------------------------------------- /src/position/dto/input/position-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/input/position-update.input.dto.ts -------------------------------------------------------------------------------- /src/position/dto/position.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/dto/position.dto.ts -------------------------------------------------------------------------------- /src/position/position.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/position.model.ts -------------------------------------------------------------------------------- /src/position/position.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/position.module.ts -------------------------------------------------------------------------------- /src/position/position.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/position.providers.ts -------------------------------------------------------------------------------- /src/position/position.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/position.resolver.ts -------------------------------------------------------------------------------- /src/position/position.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/position/position.service.ts -------------------------------------------------------------------------------- /src/quarter/dto/args/quarter-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/args/quarter-list.args.dto.ts -------------------------------------------------------------------------------- /src/quarter/dto/args/quarter.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/args/quarter.args.dto.ts -------------------------------------------------------------------------------- /src/quarter/dto/input/quarter-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/input/quarter-create.input.dto.ts -------------------------------------------------------------------------------- /src/quarter/dto/input/quarter-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/input/quarter-delete.input.dto.ts -------------------------------------------------------------------------------- /src/quarter/dto/input/quarter-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/input/quarter-update.input.dto.ts -------------------------------------------------------------------------------- /src/quarter/dto/quarter.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/dto/quarter.dto.ts -------------------------------------------------------------------------------- /src/quarter/quarter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/quarter.model.ts -------------------------------------------------------------------------------- /src/quarter/quarter.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/quarter.module.ts -------------------------------------------------------------------------------- /src/quarter/quarter.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/quarter.providers.ts -------------------------------------------------------------------------------- /src/quarter/quarter.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/quarter.resolver.ts -------------------------------------------------------------------------------- /src/quarter/quarter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/quarter/quarter.service.ts -------------------------------------------------------------------------------- /src/service-category/dto/args/service-category-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/args/service-category-list.args.dto.ts -------------------------------------------------------------------------------- /src/service-category/dto/args/service-category.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/args/service-category.args.dto.ts -------------------------------------------------------------------------------- /src/service-category/dto/input/service-category-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/input/service-category-create.input.dto.ts -------------------------------------------------------------------------------- /src/service-category/dto/input/service-category-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/input/service-category-delete.input.dto.ts -------------------------------------------------------------------------------- /src/service-category/dto/input/service-category-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/input/service-category-update.input.dto.ts -------------------------------------------------------------------------------- /src/service-category/dto/service-category.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/dto/service-category.dto.ts -------------------------------------------------------------------------------- /src/service-category/service-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/service-category.model.ts -------------------------------------------------------------------------------- /src/service-category/service-category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/service-category.module.ts -------------------------------------------------------------------------------- /src/service-category/service-category.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/service-category.providers.ts -------------------------------------------------------------------------------- /src/service-category/service-category.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/service-category.resolver.ts -------------------------------------------------------------------------------- /src/service-category/service-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-category/service-category.service.ts -------------------------------------------------------------------------------- /src/service-grid/dto/args/service-grid-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/args/service-grid-list.args.dto.ts -------------------------------------------------------------------------------- /src/service-grid/dto/args/service-grid.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/args/service-grid.args.dto.ts -------------------------------------------------------------------------------- /src/service-grid/dto/input/service-grid-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/input/service-grid-create.input.dto.ts -------------------------------------------------------------------------------- /src/service-grid/dto/input/service-grid-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/input/service-grid-delete.input.dto.ts -------------------------------------------------------------------------------- /src/service-grid/dto/input/service-grid-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/input/service-grid-update.input.dto.ts -------------------------------------------------------------------------------- /src/service-grid/dto/service-grid.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/dto/service-grid.dto.ts -------------------------------------------------------------------------------- /src/service-grid/service-grid.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/service-grid.model.ts -------------------------------------------------------------------------------- /src/service-grid/service-grid.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/service-grid.module.ts -------------------------------------------------------------------------------- /src/service-grid/service-grid.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/service-grid.providers.ts -------------------------------------------------------------------------------- /src/service-grid/service-grid.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/service-grid.resolver.ts -------------------------------------------------------------------------------- /src/service-grid/service-grid.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-grid/service-grid.service.ts -------------------------------------------------------------------------------- /src/service-guide/dto/args/service-guide-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/args/service-guide-list.args.dto.ts -------------------------------------------------------------------------------- /src/service-guide/dto/args/service-guide.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/args/service-guide.args.dto.ts -------------------------------------------------------------------------------- /src/service-guide/dto/input/service-guide-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/input/service-guide-create.input.dto.ts -------------------------------------------------------------------------------- /src/service-guide/dto/input/service-guide-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/input/service-guide-delete.input.dto.ts -------------------------------------------------------------------------------- /src/service-guide/dto/input/service-guide-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/input/service-guide-update.input.dto.ts -------------------------------------------------------------------------------- /src/service-guide/dto/service-guide.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/dto/service-guide.dto.ts -------------------------------------------------------------------------------- /src/service-guide/service-guide.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/service-guide.model.ts -------------------------------------------------------------------------------- /src/service-guide/service-guide.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/service-guide.module.ts -------------------------------------------------------------------------------- /src/service-guide/service-guide.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/service-guide.providers.ts -------------------------------------------------------------------------------- /src/service-guide/service-guide.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/service-guide.resolver.ts -------------------------------------------------------------------------------- /src/service-guide/service-guide.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-guide/service-guide.service.ts -------------------------------------------------------------------------------- /src/service-pack/dto/args/service-pack-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/args/service-pack-list.args.dto.ts -------------------------------------------------------------------------------- /src/service-pack/dto/args/service-pack.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/args/service-pack.args.dto.ts -------------------------------------------------------------------------------- /src/service-pack/dto/input/service-pack-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/input/service-pack-create.input.dto.ts -------------------------------------------------------------------------------- /src/service-pack/dto/input/service-pack-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/input/service-pack-delete.input.dto.ts -------------------------------------------------------------------------------- /src/service-pack/dto/input/service-pack-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/input/service-pack-update.input.dto.ts -------------------------------------------------------------------------------- /src/service-pack/dto/service-pack.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/dto/service-pack.dto.ts -------------------------------------------------------------------------------- /src/service-pack/service-pack.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/service-pack.model.ts -------------------------------------------------------------------------------- /src/service-pack/service-pack.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/service-pack.module.ts -------------------------------------------------------------------------------- /src/service-pack/service-pack.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/service-pack.providers.ts -------------------------------------------------------------------------------- /src/service-pack/service-pack.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/service-pack.resolver.ts -------------------------------------------------------------------------------- /src/service-pack/service-pack.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/service-pack/service-pack.service.ts -------------------------------------------------------------------------------- /src/session/dto/args/session.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/dto/args/session.args.dto.ts -------------------------------------------------------------------------------- /src/session/dto/inputs/session-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/dto/inputs/session-create.input.dto.ts -------------------------------------------------------------------------------- /src/session/dto/inputs/session-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/dto/inputs/session-update.input.dto.ts -------------------------------------------------------------------------------- /src/session/dto/session.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/dto/session.dto.ts -------------------------------------------------------------------------------- /src/session/session.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.model.ts -------------------------------------------------------------------------------- /src/session/session.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.module.ts -------------------------------------------------------------------------------- /src/session/session.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.providers.ts -------------------------------------------------------------------------------- /src/session/session.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.resolver.ts -------------------------------------------------------------------------------- /src/session/session.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.service.ts -------------------------------------------------------------------------------- /src/session/session.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/session/session.types.ts -------------------------------------------------------------------------------- /src/social-status/dto/args/social-status-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/args/social-status-list.args.dto.ts -------------------------------------------------------------------------------- /src/social-status/dto/args/social-status.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/args/social-status.args.dto.ts -------------------------------------------------------------------------------- /src/social-status/dto/input/social-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/input/social-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/social-status/dto/input/social-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/input/social-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/social-status/dto/input/social-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/input/social-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/social-status/dto/social-status.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/dto/social-status.dto.ts -------------------------------------------------------------------------------- /src/social-status/social-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/social-status.model.ts -------------------------------------------------------------------------------- /src/social-status/social-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/social-status.module.ts -------------------------------------------------------------------------------- /src/social-status/social-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/social-status.providers.ts -------------------------------------------------------------------------------- /src/social-status/social-status.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/social-status.resolver.ts -------------------------------------------------------------------------------- /src/social-status/social-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/social-status/social-status.service.ts -------------------------------------------------------------------------------- /src/subject-category/dto/args/subject-category-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/args/subject-category-list.args.dto.ts -------------------------------------------------------------------------------- /src/subject-category/dto/args/subject-category.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/args/subject-category.args.dto.ts -------------------------------------------------------------------------------- /src/subject-category/dto/input/subject-category-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/input/subject-category-create.input.dto.ts -------------------------------------------------------------------------------- /src/subject-category/dto/input/subject-category-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/input/subject-category-delete.input.dto.ts -------------------------------------------------------------------------------- /src/subject-category/dto/input/subject-category-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/input/subject-category-update.input.dto.ts -------------------------------------------------------------------------------- /src/subject-category/dto/subject-category.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/dto/subject-category.dto.ts -------------------------------------------------------------------------------- /src/subject-category/subject-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/subject-category.model.ts -------------------------------------------------------------------------------- /src/subject-category/subject-category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/subject-category.module.ts -------------------------------------------------------------------------------- /src/subject-category/subject-category.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/subject-category.providers.ts -------------------------------------------------------------------------------- /src/subject-category/subject-category.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/subject-category.resolver.ts -------------------------------------------------------------------------------- /src/subject-category/subject-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject-category/subject-category.service.ts -------------------------------------------------------------------------------- /src/subject/dto/args/subject-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/args/subject-list.args.dto.ts -------------------------------------------------------------------------------- /src/subject/dto/args/subject.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/args/subject.args.dto.ts -------------------------------------------------------------------------------- /src/subject/dto/input/subject-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/input/subject-create.input.dto.ts -------------------------------------------------------------------------------- /src/subject/dto/input/subject-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/input/subject-delete.input.dto.ts -------------------------------------------------------------------------------- /src/subject/dto/input/subject-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/input/subject-update.input.dto.ts -------------------------------------------------------------------------------- /src/subject/dto/subject.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/dto/subject.dto.ts -------------------------------------------------------------------------------- /src/subject/subject.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/subject.model.ts -------------------------------------------------------------------------------- /src/subject/subject.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/subject.module.ts -------------------------------------------------------------------------------- /src/subject/subject.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/subject.providers.ts -------------------------------------------------------------------------------- /src/subject/subject.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/subject.resolver.ts -------------------------------------------------------------------------------- /src/subject/subject.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/subject/subject.service.ts -------------------------------------------------------------------------------- /src/type-job/dto/args/type-job-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/args/type-job-list.args.dto.ts -------------------------------------------------------------------------------- /src/type-job/dto/args/type-job.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/args/type-job.args.dto.ts -------------------------------------------------------------------------------- /src/type-job/dto/input/type-job-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/input/type-job-create.input.dto.ts -------------------------------------------------------------------------------- /src/type-job/dto/input/type-job-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/input/type-job-delete.input.dto.ts -------------------------------------------------------------------------------- /src/type-job/dto/input/type-job-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/input/type-job-update.input.dto.ts -------------------------------------------------------------------------------- /src/type-job/dto/type-job.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/dto/type-job.dto.ts -------------------------------------------------------------------------------- /src/type-job/type-job.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/type-job.model.ts -------------------------------------------------------------------------------- /src/type-job/type-job.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/type-job.module.ts -------------------------------------------------------------------------------- /src/type-job/type-job.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/type-job.providers.ts -------------------------------------------------------------------------------- /src/type-job/type-job.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/type-job.resolver.ts -------------------------------------------------------------------------------- /src/type-job/type-job.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/type-job/type-job.service.ts -------------------------------------------------------------------------------- /src/user-role/dto/args/user-role-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/args/user-role-list.args.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/args/user-role.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/args/user-role.args.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/args/user-roles.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/args/user-roles.args.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/input/user-role-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/input/user-role-create.input.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/input/user-role-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/input/user-role-delete.input.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/input/user-role-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/input/user-role-update.input.dto.ts -------------------------------------------------------------------------------- /src/user-role/dto/user-role.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/dto/user-role.dto.ts -------------------------------------------------------------------------------- /src/user-role/user-role.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/user-role.model.ts -------------------------------------------------------------------------------- /src/user-role/user-role.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/user-role.module.ts -------------------------------------------------------------------------------- /src/user-role/user-role.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/user-role.providers.ts -------------------------------------------------------------------------------- /src/user-role/user-role.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/user-role.resolver.ts -------------------------------------------------------------------------------- /src/user-role/user-role.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user-role/user-role.service.ts -------------------------------------------------------------------------------- /src/user/dto/args/user-find.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/args/user-find.args.dto.ts -------------------------------------------------------------------------------- /src/user/dto/args/user-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/args/user-list.args.dto.ts -------------------------------------------------------------------------------- /src/user/dto/args/user.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/args/user.args.dto.ts -------------------------------------------------------------------------------- /src/user/dto/input/user-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/input/user-create.input.dto.ts -------------------------------------------------------------------------------- /src/user/dto/input/user-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/input/user-delete.input.dto.ts -------------------------------------------------------------------------------- /src/user/dto/input/user-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/input/user-update.input.dto.ts -------------------------------------------------------------------------------- /src/user/dto/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/dto/user.dto.ts -------------------------------------------------------------------------------- /src/user/user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.decorator.ts -------------------------------------------------------------------------------- /src/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.model.ts -------------------------------------------------------------------------------- /src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.module.ts -------------------------------------------------------------------------------- /src/user/user.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.providers.ts -------------------------------------------------------------------------------- /src/user/user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.resolver.ts -------------------------------------------------------------------------------- /src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/user/user.service.ts -------------------------------------------------------------------------------- /src/ward-social-status/dto/input/ward-social-status-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/dto/input/ward-social-status-create.input.dto.ts -------------------------------------------------------------------------------- /src/ward-social-status/dto/input/ward-social-status-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/dto/input/ward-social-status-delete.input.dto.ts -------------------------------------------------------------------------------- /src/ward-social-status/dto/input/ward-social-status-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/dto/input/ward-social-status-update.input.dto.ts -------------------------------------------------------------------------------- /src/ward-social-status/ward-social-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/ward-social-status.model.ts -------------------------------------------------------------------------------- /src/ward-social-status/ward-social-status.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/ward-social-status.module.ts -------------------------------------------------------------------------------- /src/ward-social-status/ward-social-status.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/ward-social-status.providers.ts -------------------------------------------------------------------------------- /src/ward-social-status/ward-social-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-social-status/ward-social-status.service.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/args/ward-stage-progress-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/args/ward-stage-progress-list.args.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/args/ward-stage-progress.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/args/ward-stage-progress.args.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/input/ward-stage-progress-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/input/ward-stage-progress-create.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/input/ward-stage-progress-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/input/ward-stage-progress-delete.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/input/ward-stage-progress-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/input/ward-stage-progress-update.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/dto/ward-stage-progress.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/dto/ward-stage-progress.dto.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/ward-stage-progress.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/ward-stage-progress.model.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/ward-stage-progress.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/ward-stage-progress.module.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/ward-stage-progress.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/ward-stage-progress.providers.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/ward-stage-progress.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/ward-stage-progress.resolver.ts -------------------------------------------------------------------------------- /src/ward-stage-progress/ward-stage-progress.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage-progress/ward-stage-progress.service.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/args/ward-stage-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/args/ward-stage-list.args.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/args/ward-stage.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/args/ward-stage.args.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/input/ward-stage-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/input/ward-stage-create.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/input/ward-stage-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/input/ward-stage-delete.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/input/ward-stage-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/input/ward-stage-update.input.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/dto/ward-stage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/dto/ward-stage.dto.ts -------------------------------------------------------------------------------- /src/ward-stage/ward-stage.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/ward-stage.model.ts -------------------------------------------------------------------------------- /src/ward-stage/ward-stage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/ward-stage.module.ts -------------------------------------------------------------------------------- /src/ward-stage/ward-stage.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/ward-stage.providers.ts -------------------------------------------------------------------------------- /src/ward-stage/ward-stage.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/ward-stage.resolver.ts -------------------------------------------------------------------------------- /src/ward-stage/ward-stage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward-stage/ward-stage.service.ts -------------------------------------------------------------------------------- /src/ward/dto/args/ward-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/args/ward-list.args.dto.ts -------------------------------------------------------------------------------- /src/ward/dto/args/ward.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/args/ward.args.dto.ts -------------------------------------------------------------------------------- /src/ward/dto/input/ward-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/input/ward-create.input.dto.ts -------------------------------------------------------------------------------- /src/ward/dto/input/ward-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/input/ward-delete.input.dto.ts -------------------------------------------------------------------------------- /src/ward/dto/input/ward-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/input/ward-update.input.dto.ts -------------------------------------------------------------------------------- /src/ward/dto/ward.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/dto/ward.dto.ts -------------------------------------------------------------------------------- /src/ward/ward.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/ward.model.ts -------------------------------------------------------------------------------- /src/ward/ward.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/ward.module.ts -------------------------------------------------------------------------------- /src/ward/ward.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/ward.providers.ts -------------------------------------------------------------------------------- /src/ward/ward.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/ward.resolver.ts -------------------------------------------------------------------------------- /src/ward/ward.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/ward/ward.service.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/args/what-about-us-list.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/args/what-about-us-list.args.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/args/what-about-us.args.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/args/what-about-us.args.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/input/what-about-us-create.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/input/what-about-us-create.input.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/input/what-about-us-delete.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/input/what-about-us-delete.input.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/input/what-about-us-update.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/input/what-about-us-update.input.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/dto/what-about-us.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/dto/what-about-us.dto.ts -------------------------------------------------------------------------------- /src/what-about-us/what-about-us.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/what-about-us.model.ts -------------------------------------------------------------------------------- /src/what-about-us/what-about-us.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/what-about-us.module.ts -------------------------------------------------------------------------------- /src/what-about-us/what-about-us.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/what-about-us.providers.ts -------------------------------------------------------------------------------- /src/what-about-us/what-about-us.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/what-about-us.resolver.ts -------------------------------------------------------------------------------- /src/what-about-us/what-about-us.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/src/what-about-us/what-about-us.service.ts -------------------------------------------------------------------------------- /start-containers.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/start-containers.all.sh -------------------------------------------------------------------------------- /start-containers.db-pga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/start-containers.db-pga.sh -------------------------------------------------------------------------------- /start-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/start-node.sh -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/tslint.json -------------------------------------------------------------------------------- /valentina-studio-db-diag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/valentina-studio-db-diag.xml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman7722/nestjs-gql-api/HEAD/yarn.lock --------------------------------------------------------------------------------