mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-23 21:36:05 +03:00
19 lines
411 B
Markdown
19 lines
411 B
Markdown
|
# 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 { echo(message: \"Hello World\") }"
|
||
|
```
|
||
|
|
||
|
### Try mutation
|
||
|
```
|
||
|
curl http://localhost:8080 -d "mutation { sum(x: 2, y: 2) }"
|
||
|
```
|