Skip to content

Latest commit

 

History

History

simple

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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!"
    }
  }
}