2021-05-08 12:46:02 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package example;
|
|
|
|
|
2021-06-22 01:34:06 +03:00
|
|
|
option go_package = "github.com/unistack-org/protoc-gen-go-micro/v3/example;examplepb";
|
2021-05-08 12:46:02 +03:00
|
|
|
|
|
|
|
import "tag/tag.proto";
|
|
|
|
import "api/annotations.proto";
|
2024-06-11 20:45:45 +03:00
|
|
|
import "openapiv3/annotations.proto";
|
|
|
|
//import "google/protobuf/wrappers.proto";
|
|
|
|
import "graphql/graphql.proto";
|
2021-05-08 12:46:02 +03:00
|
|
|
|
|
|
|
service Example {
|
|
|
|
rpc Call(CallReq) returns (CallRsp) {
|
2024-06-11 20:45:45 +03:00
|
|
|
option (micro.graphql.rpc) = {type: QUERY};
|
|
|
|
option (micro.openapiv3.openapiv3_operation) = {
|
2021-05-08 12:46:02 +03:00
|
|
|
operation_id: "Call";
|
2024-06-11 20:45:45 +03:00
|
|
|
responses: {
|
|
|
|
default: {
|
|
|
|
reference: {_ref: ".example.Error"};
|
|
|
|
};
|
|
|
|
};
|
2021-05-08 12:46:02 +03:00
|
|
|
};
|
|
|
|
option (micro.api.http) = { post: "/v1/example/call/{name}"; body: "*"; };
|
2022-11-15 12:53:04 +03:00
|
|
|
option (micro.api.micro_method) = { timeout: "5s"; };
|
2021-05-08 12:46:02 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
message CallReq {
|
2024-06-11 20:45:45 +03:00
|
|
|
string name = 1 [(micro.graphql.field) = {required: true}];
|
2021-05-08 12:46:02 +03:00
|
|
|
string req = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
message CallRsp {
|
|
|
|
string rsp = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
message Error {
|
|
|
|
string msg = 1;
|
|
|
|
};
|