You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to migrate my application from REST to GraphQL but I encountered a problem. Whenever I run a query in which it works perfectly fine like normal it returns the results I want. But when I use serverless-offline or deploy it on AWS Lambda it doesn't work. I get this error:
I currently use graphql-http in my nodejs and express application and after trying out the deprecated express-graph package it has the exact same problem. You can clone the below GitHub repository and use serverless offline to run it and see for yourself.
you can run the below
query {
hello
}
in which the result should be
{
"data": {
"hello": "Hello world!"
}
}
I noticed there is an issue that is still open but no update from the developer yet regarding this issue in which he said he'll look into it later and it's been 2 years: #140
The text was updated successfully, but these errors were encountered:
I am trying to migrate my application from REST to GraphQL but I encountered a problem. Whenever I run a query in which it works perfectly fine like normal it returns the results I want. But when I use
serverless-offline
or deploy it on AWS Lambda it doesn't work. I get this error:I currently use
graphql-http
in my nodejs and express application and after trying out the deprecatedexpress-graph
package it has the exact same problem. You can clone the below GitHub repository and useserverless offline
to run it and see for yourself.you can run the below
in which the result should be
I noticed there is an issue that is still open but no update from the developer yet regarding this issue in which he said he'll look into it later and it's been 2 years:
#140
The text was updated successfully, but these errors were encountered: