GraphQL example

Very simple GraphQL example

Installation

  • Checkout and run npm install

Running

Example queries

query {
  hello
  complex {
    someString
    someBoolean
  }
}
mutation {
  setHelloString(str: "Hello You")
}