docs: add missing ` in essentials/server

This commit is contained in:
Evans Hauser 2018-04-25 15:25:07 -07:00
parent b6bdfdbbad
commit 80e0c30782
No known key found for this signature in database
GPG key ID: 88AF586817F52EEC

View file

@ -47,7 +47,7 @@ const { ApolloServer, gql } = require('apollo-server');
### Existing applications (Middleware)
Existing applications generally already have existing middleware in place and Apollo Server works with those existing middleware options. But in order to play along, we need to import the `ApolloServer which corresponds to the type of server which is already in use.
Existing applications generally already have existing middleware in place and Apollo Server works with those existing middleware options. But in order to play along, we need to import the `ApolloServer` which corresponds to the type of server which is already in use.
For example, if the application is already using an Express server, it is important to use the `apollo-server/express` import.