graphql-php/examples/00-hello-world
2017-01-06 12:46:37 +01:00
..
graphql.php Small correction in examples 2017-01-06 12:46:37 +01:00
README.md Added hello world example 2016-10-23 18:34:51 +07:00

Hello world

Clean and simple single-file example of main GraphQL concepts originally proposed and implemented by Leo Cavalcante

Run locally

php -S localhost:8080 ./graphql.php

Try query

curl http://localhost:8080 -d "query { echo(message: \"Hello World\") }"

Try mutation

curl http://localhost:8080 -d "mutation { sum(x: 2, y: 2) }"