graphql-php/examples/03-server
2019-07-01 12:12:01 +02:00
..
graphql.php Rename $rootValue where applicable 2019-07-01 12:12:01 +02:00
README.md Better argument order for curl. Related to #264. 2018-04-04 16:34:05 +03:00

Hello world

Same example as 01-hello-world, but uses Standard Http Server instead of manual parsing of incoming data.

Run locally

php -S localhost:8080 ./graphql.php

Try query

curl -d '{"query": "query { echo(message: \"Hello World\") }" }' -H "Content-Type: application/json" http://localhost:8080

Try mutation

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