├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── docker-compose.yml ├── nest-cli.json ├── package.json ├── src ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── main.ts └── modules │ ├── bases │ ├── dto │ │ └── base.dto.ts │ └── entities │ │ └── base.entity.ts │ ├── contents │ ├── contents.module.ts │ ├── dto │ │ ├── content.dto.ts │ │ ├── create-content.input.ts │ │ └── update-content.input.ts │ └── entities │ │ └── content.entity.ts │ ├── disciplines │ ├── disciplines.module.ts │ ├── dto │ │ ├── create-discipline.input.ts │ │ ├── discipline.dto.ts │ │ └── update-discipline.input.ts │ └── entities │ │ └── discipline.entity.ts │ ├── lessons │ ├── dto │ │ ├── create-lesson.input.ts │ │ ├── lesson.dto.ts │ │ └── update-lesson.input.ts │ ├── entities │ │ └── lesson.entity.ts │ └── lessons.module.ts │ └── students │ ├── dto │ ├── create-student.input.ts │ ├── student.dto.ts │ └── update-student.input.ts │ ├── entities │ └── student.entity.ts │ └── students.module.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modules/bases/dto/base.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/bases/dto/base.dto.ts -------------------------------------------------------------------------------- /src/modules/bases/entities/base.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/bases/entities/base.entity.ts -------------------------------------------------------------------------------- /src/modules/contents/contents.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/contents/contents.module.ts -------------------------------------------------------------------------------- /src/modules/contents/dto/content.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/contents/dto/content.dto.ts -------------------------------------------------------------------------------- /src/modules/contents/dto/create-content.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/contents/dto/create-content.input.ts -------------------------------------------------------------------------------- /src/modules/contents/dto/update-content.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/contents/dto/update-content.input.ts -------------------------------------------------------------------------------- /src/modules/contents/entities/content.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/contents/entities/content.entity.ts -------------------------------------------------------------------------------- /src/modules/disciplines/disciplines.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/disciplines/disciplines.module.ts -------------------------------------------------------------------------------- /src/modules/disciplines/dto/create-discipline.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/disciplines/dto/create-discipline.input.ts -------------------------------------------------------------------------------- /src/modules/disciplines/dto/discipline.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/disciplines/dto/discipline.dto.ts -------------------------------------------------------------------------------- /src/modules/disciplines/dto/update-discipline.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/disciplines/dto/update-discipline.input.ts -------------------------------------------------------------------------------- /src/modules/disciplines/entities/discipline.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/disciplines/entities/discipline.entity.ts -------------------------------------------------------------------------------- /src/modules/lessons/dto/create-lesson.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/lessons/dto/create-lesson.input.ts -------------------------------------------------------------------------------- /src/modules/lessons/dto/lesson.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/lessons/dto/lesson.dto.ts -------------------------------------------------------------------------------- /src/modules/lessons/dto/update-lesson.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/lessons/dto/update-lesson.input.ts -------------------------------------------------------------------------------- /src/modules/lessons/entities/lesson.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/lessons/entities/lesson.entity.ts -------------------------------------------------------------------------------- /src/modules/lessons/lessons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/lessons/lessons.module.ts -------------------------------------------------------------------------------- /src/modules/students/dto/create-student.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/students/dto/create-student.input.ts -------------------------------------------------------------------------------- /src/modules/students/dto/student.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/students/dto/student.dto.ts -------------------------------------------------------------------------------- /src/modules/students/dto/update-student.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/students/dto/update-student.input.ts -------------------------------------------------------------------------------- /src/modules/students/entities/student.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/students/entities/student.entity.ts -------------------------------------------------------------------------------- /src/modules/students/students.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/src/modules/students/students.module.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelogluz/NestJS-Nestjs-query/HEAD/yarn.lock --------------------------------------------------------------------------------