omgrpc icon indicating copy to clipboard operation
omgrpc copied to clipboard

Error showing input when one of the properties is an array of objects

Open dayadev opened this issue 7 years ago • 0 comments

Have issues in the input when one of the properties in the input has an array of objects, I have the following request in the protofile

`message RequestMessage {
repeated Item items=1;
string type = 2;
string valid = 4; }

message Item{
string item_id = 1;
string sku = 2;
string sub_sku = 3; }`

Though I have repeated Items in the RequestMessage, In omgrpc, its is shown as a single object as in below screenshot

screen shot 2018-05-10 at 9 34 34 am

dayadev avatar May 10 '18 14:05 dayadev