From 82abb58987e49ce1314ec38d0eea64e64d962883 Mon Sep 17 00:00:00 2001 From: Benjie Date: Tue, 4 Feb 2025 10:37:37 +0000 Subject: [PATCH] Improve flow of documentation around GraphiQL --- website/pages/docs/running-an-express-graphql-server.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/pages/docs/running-an-express-graphql-server.mdx b/website/pages/docs/running-an-express-graphql-server.mdx index c8ef9305e8..387716bb46 100644 --- a/website/pages/docs/running-an-express-graphql-server.mdx +++ b/website/pages/docs/running-an-express-graphql-server.mdx @@ -95,6 +95,8 @@ You can run this GraphQL server with: node server.js ``` +At this point you will have a running GraphQL API; but you can't just visit it in your web browser to use it - you need a GraphQL client to issue GraphQL queries to the API. Let's take a look at how to add the GraphiQL (GraphQL with an `i` in the middle) integrated development environment to your server. + ## Using GraphiQL [GraphiQL](https://github.com/graphql/graphiql) is GraphQL's IDE; a great way of querying and exploring your GraphQL API.