Merge pull request #282 from han8gui/patch-1

Docs: fixed invalid port number in getting started guide
This commit is contained in:
Vladimir Razuvaev 2018-05-27 20:04:42 +07:00 committed by GitHub
commit 82b1dbd836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ echo json_encode($output);
Our example is finished. Try it by running:
```sh
php -S localhost:8000 graphql.php
php -S localhost:8080 graphql.php
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
```