From 57c77623ee37e57c8c3e91c6afc28fa758e992ca Mon Sep 17 00:00:00 2001 From: Ben Zhu Date: Wed, 9 May 2018 10:18:43 +0700 Subject: [PATCH] fix port bug (cherry picked from commit 72e8607) --- 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\") }" }' ```