How to get all the body values from a POST request in Nestjs?
Originally Published Here ๐!
To get the body values from the POST method request, you can use the @Body() decorator function from the @nestjs/common module in Nestjs.
TL;DR
import { Controller, Post, Body } from "@nestjs/common";
// DTO
import { Po...
melvingeorge-me.hashnode.dev6 min read