mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
5ca69c6ec8
This allow newcomers to follow documentation to get started and then keep exploring with GraphiQL Closes #87
439 B
439 B
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) }" }'