graphql-php/examples/00-hello-world
2019-06-30 20:54:56 +02:00
..
graphql.php More consistent naming 2019-06-30 20:54:56 +02:00
README.md Make Hello World compatible with GraphiQL 2017-03-22 10:53:00 +09: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": "query { echo(message: \"Hello World\") }" }'

Try mutation

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