Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 396 Bytes

File metadata and controls

25 lines (21 loc) · 396 Bytes

GraphQL

Main Readme > Backend Readme

To send the first query find the address in service logs and open it in browser. Then send next request(Place any name instead of "Bob"):

query hello {
  hello(name: "Bob") {
    response
  }
}

You should get in response:

{
  "data": {
    "hello": {
      "response": "Hello, Bob"
    }
  }
}