graphql-php/examples/00-hello-world/README.md

19 lines
439 B
Markdown
Raw Normal View History

2016-10-23 14:34:51 +03:00
# Hello world
Clean and simple single-file example of main GraphQL concepts originally proposed and
implemented by [Leo Cavalcante](https://github.com/leocavalcante)
### Run locally
```
php -S localhost:8080 ./graphql.php
```
### Try query
```
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
2016-10-23 14:34:51 +03:00
```
### Try mutation
```
curl http://localhost:8080 -d '{"query": "mutation { sum(x: 2, y: 2) }" }'
2016-10-23 14:34:51 +03:00
```