diff --git a/docs/source/deployment/lambda.md b/docs/source/deployment/lambda.md index d18b4b0dbcd..5afc9a81cdb 100644 --- a/docs/source/deployment/lambda.md +++ b/docs/source/deployment/lambda.md @@ -155,7 +155,7 @@ exports.handler = server.createHandler({ ## Configuring the underlying Express integration -Because `apollo-server-lambda` is built on top of `apollo-server-express`, you can specify the same options that `apollo-server-express` accepts in `getMiddleware` (or `applyMiddleware`, other than `app`) as the `expressGetMiddlewareOptions` option to `createHandler. The default value of this option is `{path: '/'}` (and this value of `path` will be used unless you explicitly override it). For example: +Because `apollo-server-lambda` is built on top of `apollo-server-express`, you can specify the same options that `apollo-server-express` accepts in `getMiddleware` (or `applyMiddleware`, other than `app`) as the `expressGetMiddlewareOptions` option to `createHandler`. The default value of this option is `{path: '/'}` (and this value of `path` will be used unless you explicitly override it). For example: ```js exports.handler = server.createHandle({ @@ -163,6 +163,7 @@ exports.handler = server.createHandle({ disableHealthCheck: true, } }); +``` ## Getting request info