Below is the `message` I have created in my `.Proto` :

    message ProductShippingReply {
      string id = 1;
      string shipping_mode = 2;
      double shipping_cost = 3; 
      int32 shipping_duration = 4;
    }

in my Node.Js code I am trying to send an `Array` of this `message` back to 
the client, however the client receives an empty object. It works if I send 
only an instance of such `message`.

How do I send an `Array` of `Message` in PB?

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/f5d41749-e163-470a-92d0-f511465f87dd%40googlegroups.com.

Reply via email to