graphql-php/examples/02-shorthand
2019-06-30 20:54:56 +02:00
..
graphql.php PHPBench 2018-09-26 11:18:14 +02:00
README.md Document shorthand usage 2017-07-10 21:14:34 +01:00
rootvalue.php More consistent naming 2019-06-30 20:54:56 +02:00
schema.graphqls Document shorthand usage 2017-07-10 21:14:34 +01:00

Parsing GraphQL IDL shorthand

Same as the Hello world example but shows how to build GraphQL schema from shorthand and wire up some resolvers

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) }" }'