From 72e8607e472c62244565c5c0c8dc7691d92b4fa8 Mon Sep 17 00:00:00 2001 From: Ben Zhu Date: Wed, 9 May 2018 11:18:43 +0800 Subject: [PATCH] fix port bug --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 2f3557a..6b1a0cf 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -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\") }" }' ```