We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Queries with query parameters that are array based doesn't work.
It boils down to this line:
openapi-to-graphql/packages/openapi-to-graphql/src/resolver_builder.ts
Line 1374 in 8951518
An array is also considered an object in JavaScript. The if statement needs to be flipped.
The text was updated successfully, but these errors were encountered:
The queryString parts of that library should probably be handled by https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams as well.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
Queries with query parameters that are array based doesn't work.
It boils down to this line:
openapi-to-graphql/packages/openapi-to-graphql/src/resolver_builder.ts
Line 1374 in 8951518
An array is also considered an object in JavaScript. The if statement needs to be flipped.
The text was updated successfully, but these errors were encountered: