Skip to content

Commit

Permalink
🐛 Fix params
Browse files Browse the repository at this point in the history
  • Loading branch information
adbouygues committed May 30, 2024
1 parent 2150b6b commit b0888d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/graphql-mesh/utils/swaggers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const generateTypeDefsAndResolversFromSwagger = (

if (paramsToSend.length) {
paramsToSend.forEach((param) => {
args[param] = ''
args[param] = '0'
})
}

Expand Down

0 comments on commit b0888d6

Please sign in to comment.