File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 33* .yml
44* .md
55
6+ .volta
7+
68dist /
Original file line number Diff line number Diff line change 1+ Abdelsamed
12apollographql
23asynciterable
34changesets
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function normalizeGatewayEvent(event: GatewayEvent): HTTPGraphQLRequest {
9595 if ( isV1Event ( event ) ) {
9696 return normalizeV1Event ( event ) ;
9797 }
98-
98+
9999 if ( isV2Event ( event ) ) {
100100 return normalizeV2Event ( event ) ;
101101 }
@@ -121,7 +121,9 @@ function normalizeV1Event(event: APIGatewayProxyEvent): HTTPGraphQLRequest {
121121 // Passing a key with an array entry to the constructor yields
122122 // one value in the querystring with %2C as the array was flattened to a string
123123 // Multi values must be appended individually to get the to-spec output
124- for ( const [ key , values ] of Object . entries ( event . multiValueQueryStringParameters ?? { } ) ) {
124+ for ( const [ key , values ] of Object . entries (
125+ event . multiValueQueryStringParameters ?? { } ,
126+ ) ) {
125127 for ( const value of values ?? [ ] ) {
126128 searchParams . append ( key , value ) ;
127129 }
You can’t perform that action at this time.
0 commit comments