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
In azureFunctionsApollo.js line 26:
I had to change from body: gqlResponse, to body: JSON.parse(gqlResponse),
body: gqlResponse,
body: JSON.parse(gqlResponse),
Then it worked correctly. Before this fix the problem was that a string was being returned and not real JSON.
"apollo-cache-control": "0.0.9", "apollo-server-azure-functions": "^1.3.2", "apollo-server-core": "^1.3.2",
Pull request #885
The text was updated successfully, but these errors were encountered:
I have the very same problem. This makes apollo-server-azure-functions unusable currently.
apollo-server-azure-functions
Sorry, something went wrong.
This pull request can be automatically merged by project collaborators
Can you please share the code to write azure function, unable to access apollo server using azure function
This should be fixed with #753. Thanks for raising this originally!
No branches or pull requests
In azureFunctionsApollo.js line 26:
I had to change from
body: gqlResponse,
to
body: JSON.parse(gqlResponse),
Then it worked correctly. Before this fix the problem was that a string was being returned and not real JSON.
Pull request
#885
The text was updated successfully, but these errors were encountered: