mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 14:26:08 +03:00
Merge pull request #265 from sarukuku/master
Add content type header to curl commands on server example
This commit is contained in:
commit
87729589e0
@ -10,10 +10,10 @@ php -S localhost:8080 ./graphql.php
|
|||||||
|
|
||||||
### Try query
|
### Try query
|
||||||
```
|
```
|
||||||
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
|
curl -d '{"query": "query { echo(message: \"Hello World\") }" }' -H "Content-Type: application/json" http://localhost:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
### Try mutation
|
### Try mutation
|
||||||
```
|
```
|
||||||
curl http://localhost:8080 -d '{"query": "mutation { sum(x: 2, y: 2) }" }'
|
curl -d '{"query": "mutation { sum(x: 2, y: 2) }" }' -H "Content-Type: application/json" http://localhost:8080
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user