NestJS - Interceptors
Given this interceptor code snippet, what will be the transformed response?
intercept(context, next) {
return next.handle().pipe(map(data => ({ result: data })));
}