NestJS - Interceptors
What will be the output of this NestJS interceptor?
intercept(context, next) {
return next.handle().pipe(map(data => ({ status: 'success', payload: data })));
}