NestJS - Interceptors
Consider this interceptor code:
What will be logged when a request is handled?
intercept(context, next) {
console.log('Before');
return next.handle().pipe(tap(() => console.log('After')));
}What will be logged when a request is handled?
