Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Jan 14, 2021
1 parent 2131a7a commit a3ced36
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void ConfigureServices(IServiceCollection services)
}
```

## Step 3: Verify our setup
## Step 3: Verify server setup

Now that our server is set up with automatic persisted queries, let us verify that it works as expected. We can do that by just using our console and a tool called `curl`. For our example, we will use a dummy query `{__typename}` with an MD5 hash serialized to base64 as a query id `71yeex4k3iYWQgg9TilDIg==`. We will test the full automatic persisted query flow and walk you through the responses.

Expand Down Expand Up @@ -281,15 +281,15 @@ curl -g 'http://localhost:5000/graphql/?query={__typename}&extensions={"persiste
}
```

1. Stop your GraphQL server.
6. Stop your GraphQL server.

1. Start your GraphQL server again.
7. Start your GraphQL server again.

```bash
dotnet run
```

1. let us execute the optimized query to see if our query was correctly stored on our Redis cache.
8. Let us execute the optimized query to see if our query was correctly stored on our Redis cache.

**Request**

Expand Down

0 comments on commit a3ced36

Please sign in to comment.