Meanwhile in my world - I have a graphql schema from my front-end team and I want to generate some proto file from it. There are a lot of interface A implements B & C {}
and type Query {F(id: ID!): G}
statements in this graphql schema. Do human beings have some generator from graphql to proto3?
There is no any inheritance in proto3. The best way is to do it by your own hands.