|
5 年之前 | |
---|---|---|
.. | ||
README.md | 5 年之前 | |
graphql.php | 5 年之前 | |
rootvalue.php | 5 年之前 | |
schema.graphqls | 5 年之前 |
Same as the Hello world example but shows how to build GraphQL schema from shorthand and wire up some resolvers
php -S localhost:8080 ./graphql.php
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
curl http://localhost:8080 -d '{"query": "mutation { sum(x: 2, y: 2) }" }'