You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow users to opt out of literal comma "," query parameters parsing (#215)
* feat: add parseCommaSeparatedQueryParams option to opt-out of parsing multi-value query params with api gateway v2.0 format, fixes#202
* Chrore: Update readme with the new parseCommaSeparatedQueryParams option
| retainStage | Retain the stage part of the API Gateway URL |`false`|
32
32
| pathParameterUsedAsPath | Use a defined pathParameter as path (i.e. `'proxy'`) |`false`|
33
-
33
+
| parseCommaSeparatedQueryParams | Parse querystring with commas into an array of values. Affects the behavior of the querystring parser with commas while using [Payload Format Version 2.0](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html#http-api-develop-integrations-lambda.proxy-format)|`true`|
test('GET Retains queryStringParameters in the original awsLambda onRequest hook when parseCommaSeparatedQueryParams is enabled by default',async(t)=>{
* Parse querystring with commas into an array of values.
21
+
* Affects the behavior of the querystring parser with commas while using [Payload Format Version 2.0](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html#http-api-develop-integrations-lambda.proxy-format)
22
+
*
23
+
* e.g. when set to `true` (default) `?foo=qux,bar` => `{ foo: ['qux', 'bar'] }`
24
+
*
25
+
* e.g. when set to `false` `?foo=qux,bar` => `{ foo: 'qux,bar' }`
0 commit comments