From 97e47ad97f1ea22bd3270070edb235fb391a6357 Mon Sep 17 00:00:00 2001 From: hwillson Date: Sat, 5 Nov 2022 21:02:06 -0400 Subject: [PATCH] Remove https from localhost based link name Fix typo in #1265 - the link source is correct (http) but the link name is incorrectly specifying https. --- src/content/graphql-js/Tutorial-ExpressGraphQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/graphql-js/Tutorial-ExpressGraphQL.md b/src/content/graphql-js/Tutorial-ExpressGraphQL.md index 09cfc7a7ec..9d618160c5 100644 --- a/src/content/graphql-js/Tutorial-ExpressGraphQL.md +++ b/src/content/graphql-js/Tutorial-ExpressGraphQL.md @@ -50,7 +50,7 @@ You can run this GraphQL server with: node server.js ``` -Since we configured `graphqlHTTP` with `graphiql: true`, you can use the GraphiQL tool to manually issue GraphQL queries. If you navigate in a web browser to [https://localhost:4000/graphql](http://localhost:4000/graphql), you should see an interface that lets you enter queries. It should look like: +Since we configured `graphqlHTTP` with `graphiql: true`, you can use the GraphiQL tool to manually issue GraphQL queries. If you navigate in a web browser to [http://localhost:4000/graphql](http://localhost:4000/graphql), you should see an interface that lets you enter queries. It should look like: ![hello world graphql example](/img/hello.png)