NestJS - Middleware
You want to apply three middleware in NestJS to the route
Which is the correct order to apply these middleware?
/api/items: validateMiddleware, authMiddleware, and auditMiddleware. authMiddlewarerequires validation to be done first.auditMiddlewareshould log after both run.
Which is the correct order to apply these middleware?
