Concept Flow - Route parameters
Client sends request to URL with parameter
NestJS Router matches route pattern
Extract parameter from URL
Pass parameter to controller method
Controller uses parameter to process request
Send response back to client
This flow shows how NestJS takes a URL with parameters, extracts them, and passes them to the controller method to handle the request.