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
Hi! I'm trying to run graphql-mesh with 1 handler that uses graphql-ws as transport. It seems like queries does not works correctly with graphql-ws.
To Reproduce Clone https://github.com/msadovyi/mesh-graphql-ws-issue
yarn && yarn start
http://localhost:3000
{ hello }
subscription { greetings }
http://localhost:4000
Expected behavior Both of queries works correctly and returns values as source API does.
Environment:
"@graphql-mesh/cli": "^0.30.2", "@graphql-mesh/graphql": "^0.17.10", "apollo-server-express": "^2.25.1", "express": "^4.17.1", "graphql": "^15.5.0", "graphql-ws": "^5.1.2", "ws": "^7.4.6"
The text was updated successfully, but these errors were encountered:
Can you give a little more context? When you run the subscription does an error come back? Or is it just hanging?
Sorry, something went wrong.
Upcoming Release Changes (ardatan#2311)
4031c59
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
No branches or pull requests
Describe the bug
Hi! I'm trying to run graphql-mesh with 1 handler that uses graphql-ws as transport. It seems like queries does not works correctly with graphql-ws.
To Reproduce
Clone https://github.com/msadovyi/mesh-graphql-ws-issue
yarn && yarn start
. It runs source API at port 3000 and grapql-mesh at port 4000.http://localhost:3000
and make sure query{ hello }
and subscriptionsubscription { greetings }
return values.http://localhost:4000
and execute same queries:{ hello }
,subscription { greetings }
.Expected behavior
Both of queries works correctly and returns values as source API does.
Environment:
The text was updated successfully, but these errors were encountered: