graphql-php/examples/03-server/README.md

537 B

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 -H "Content-Type: application/json" -d '{"query": "query { echo(message: \"Hello World\") }" }' http://localhost:8080

Try mutation

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