Relations in Prisma.
Relation in prisma is defined as the inter-connection between two models in Prisma schema. For example, if we have a model named User and another named Post, then one user can have many number of posts associated with him/her. It represents 1 to many relation in Prisma. There are three types of relations in Prisma. … Read more
What is NestJs? Why NestJs ? Basic information about NestJs
Three main components: Modules A module is a class annotated with a @Modules() decorator. The @module() decorator provides metadata the Nest marks use to organize the application structure. Each application has at least one module A module is a class annotated with a @Modules() decorator. The @module() decorator provides metadata the Nest marks use to … Read more