NestJS - Interceptors
What will be the output if this interceptor is applied?
intercept(context, next) {
return next.handle().pipe(map(() => 'fixed response'));
}