From a88b5f2108ab5625be12008579e5706ae541adf7 Mon Sep 17 00:00:00 2001 From: Shashi Kant Date: Wed, 10 Apr 2024 11:09:19 +0000 Subject: [PATCH] fixing greetings.graphql --- examples/greetings.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/greetings.graphql b/examples/greetings.graphql index b64bef27f3..06c5bb684e 100644 --- a/examples/greetings.graphql +++ b/examples/greetings.graphql @@ -1,4 +1,4 @@ -schema @server @upstream @link(src: "greetings.proto", type: Protobuf) { +schema @server @upstream @link(src: "../src/generator/proto/greetings.proto", type: Protobuf) { query: Query } @@ -7,7 +7,7 @@ input Greetings__HelloRequest @tag(id: "greetings.HelloRequest") { } type Greetings { - sayHello(helloRequest: Greetings__HelloRequest!): Greetings__HelloReply! @grpc(method: "greetings.Greeter.SayHello") + sayHello(helloRequest: Greetings__HelloRequest!): Greetings__HelloReply! @grpc(method: "greetings.Greeter.SayHello", baseURL: "http://localhost") } type Greetings__HelloReply @tag(id: "greetings.HelloReply") {