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 3
3
* .yml
4
4
* .md
5
5
6
+ .volta
7
+
6
8
dist /
Original file line number Diff line number Diff line change
1
+ Abdelsamed
1
2
apollographql
2
3
asynciterable
3
4
changesets
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function normalizeGatewayEvent(event: GatewayEvent): HTTPGraphQLRequest {
95
95
if ( isV1Event ( event ) ) {
96
96
return normalizeV1Event ( event ) ;
97
97
}
98
-
98
+
99
99
if ( isV2Event ( event ) ) {
100
100
return normalizeV2Event ( event ) ;
101
101
}
@@ -121,7 +121,9 @@ function normalizeV1Event(event: APIGatewayProxyEvent): HTTPGraphQLRequest {
121
121
// Passing a key with an array entry to the constructor yields
122
122
// one value in the querystring with %2C as the array was flattened to a string
123
123
// 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
+ ) ) {
125
127
for ( const value of values ?? [ ] ) {
126
128
searchParams . append ( key , value ) ;
127
129
}
You can’t perform that action at this time.
0 commit comments