mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
20 lines
418 B
Markdown
20 lines
418 B
Markdown
# 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) }" }'
|
|
```
|