Skip to content

Commit e7d7efb

Browse files
authored
Markdown renderer can't handle italic i in middle of word
1 parent 248b78a commit e7d7efb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/graphql-js/running-an-express-graphql-server.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ You can run this GraphQL server with:
5252
node server.js
5353
```
5454

55-
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 Graph_i_QL (GraphQL with an `i` in the middle) integrated development environment to your server.
55+
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.
5656

5757
## Using GraphiQL
5858

59-
[Graph_i_QL](https://github.com/graphql/graphiql) is GraphQL's IDE; a great way of querying and exploring your GraphQL API.
60-
One easy way to add it to your server is via the MIT-licensed [ruru](https://github.com/graphile/crystal/blob/main/grafast/ruru/README.md) package which bundles a prebuilt Graph_i_QL with some popular enhancements.
59+
[GraphiQL](https://github.com/graphql/graphiql) is GraphQL's IDE; a great way of querying and exploring your GraphQL API.
60+
One easy way to add it to your server is via the MIT-licensed [ruru](https://github.com/graphile/crystal/blob/main/grafast/ruru/README.md) package which bundles a prebuilt GraphiQL with some popular enhancements.
6161
To do so, install the `ruru` module with `npm install --save ruru` and then add the following to your `server.js` file, then restart the `node server.js` command:
6262

6363
```js
@@ -71,6 +71,6 @@ app.get("/", (_req, res) => {
7171
```
7272

7373
If you navigate to [http://localhost:4000](http://localhost:4000), you should see an interface that lets you enter queries;
74-
now you can use the Graph_i_QL IDE tool to issue GraphQL queries directly in the browser.
74+
now you can use the GraphiQL IDE tool to issue GraphQL queries directly in the browser.
7575

7676
At this point you have learned how to run a GraphQL server. The next step is to learn how to [issue GraphQL queries from client code](/graphql-js/graphql-clients/).

0 commit comments

Comments
 (0)