Tag: grpc-go
-
How to generate GraphQL query from protocol buffer generated code with gqlgen?
0 I have a protocol buffer file which includes an enumeration within a message. message Advisor { … enum AdvisorRole { // here be values } } This pb is the input to generate stubs using protoc-gen-gogo. ../gen/ProjectService.pb.go type Advisor_AdvisorRole int32 const ( // here be constant values ) The generated code is in time…