Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 402 Bytes

File metadata and controls

34 lines (26 loc) · 402 Bytes

Simple graphql-gateway

How to run

cd examples/simple
./start.sh

Then, open http://localhost:4000 in browser.

Generated GraphQL schema

Query example:

query {
  sayHello(request:{name:"GraphQL"}){
    message
  }
}

Result:

{
  "data": {
    "serverStreaming": {
      "message": "Hello GraphQL!"
    }
  }
}