From a878dd2fab0f322783587a9b824ff01628f6e25d Mon Sep 17 00:00:00 2001 From: Jeremy Daly Date: Fri, 21 Dec 2018 22:37:57 -0500 Subject: [PATCH] add documentation for multiValueQuery --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 39a0148..a5a1de3 100644 --- a/README.md +++ b/README.md @@ -388,6 +388,7 @@ The `REQUEST` object contains a parsed and normalized request from API Gateway. - `method`: The HTTP method of the request - `path`: The path passed in by the request including the `base` and any `prefix` assigned to routes - `query`: Querystring parameters parsed into an object +- `multiValueQuery`: Querystring parameters with multiple values parsed into an object with array values - `headers`: An object containing the request headers (properties converted to lowercase for HTTP/2, see [rfc7540 8.1.2. HTTP Header Fields](https://tools.ietf.org/html/rfc7540)) - `rawHeaders`: An object containing the original request headers (property case preserved) - `body`: The body of the request. If the `isBase64Encoded` flag is `true`, it will be decoded automatically.