Fix markdown headings to more properly group sections.

This commit is contained in:
Jesse Rosenberger 2019-02-26 09:50:24 +02:00
parent ff4d6cc378
commit 08ddf26cfe
No known key found for this signature in database
GPG key ID: C0CCCF81AA6C08D8

View file

@ -223,7 +223,7 @@ async function StartServer() {
StartServer().catch(error => console.log(error));
```
## Fastify
### Fastify
```js
const { ApolloServer, gql } = require('apollo-server-fastify');
@ -268,7 +268,7 @@ const server = new ApolloServer({ typeDefs, resolvers });
exports.graphqlHandler = server.createHandler();
```
### Context
## Context
The context is created for each request. The following code snippet shows the creation of a context. The arguments are the `request`, the request, and `h`, the response toolkit.