How to get or extract URL parameters from a GET request in Nestjs?
Originally Published Here ๐!
To get the URL parameter values or params from a GET request, we can use the @Param decorator function from the @nestjs/common module before the Controller method in Nestjs.
TL;DR
import { Controller, Get, Param } from "...
melvingeorge-me.hashnode.dev5 min read