protoc-gen-go-micro/example/schema.graphql

12 lines
175 B
GraphQL
Raw Normal View History

directive @Example on FIELD_DEFINITION
input CallReqInput {
name: String!
req: String
}
type CallRsp {
rsp: String
}
type Query {
exampleCall(in: CallReqInput): CallRsp
}