Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

256
Vistas
nestjs with grpc microservices not return empty arrays

I call service via grpc in nest js and when it return empty array the property not returned in object

  @Get()
  @Public()
  async findAll(
    @Query()
    request: PaginationQuery,
  ) {
    try {
      const res$ = this.svc.getAll(request);
      const { error, ...rest } = await firstValueFrom(res$);
      if (error) {
        throw new BadRequestException(error);
      }
      return rest;
    } catch (e) {
      this.logger.error(e);
      return new InternalServerErrorException(e);
    }
  }

I logged the result before it returned to client service it was

 {
      "id": "457a508b-f19a-4c77-b8a2-bb4004b9277b",
      "name": "plan1",
      "key": "plan1",
      "price": 20,
      "yearlyDiscountRate": 0.2,
      "trialDays": 14,
      "isRecommended": true,
      "isLegacy": false,
      "features": []
    }

but when it return to client via grpc it was

 {
      "id": "457a508b-f19a-4c77-b8a2-bb4004b9277b",
      "name": "plan1",
      "key": "plan1",
      "price": 20,
      "yearlyDiscountRate": 0.2,
      "trialDays": 14,
      "isRecommended": true,
      "isLegacy": false
    }

the features key with empty array not found.

I tried some things like add loader with arrays:true

 const app = await NestFactory.createMicroservice<MicroserviceOptions>(
    SubscriptionsModule,
    {
      transport: Transport.GRPC,
      options: {
        url: '0.0.0.0:50052',
        package: protobufPackage,
        protoPath: join(process.cwd(), 'libs/proto/src/subscriptions.proto'),
        loader: {
          arrays: true,
        },
      },
    },
  );

but it still not return property with empty array

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

I found the answer it was from line

if (error) {
        throw new BadRequestException(error);
      }

when arrays: true the if condition be true and throw an error. solved with

if (error?.length) {
        throw new BadRequestException(error);
      }
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda