Replies: 5 comments 12 replies
-
It depends on what source are you using? If gRPC, yes we do. If OData, no because OData doesn't have anything realtime. If Swagger, not for now because it is a bit tricky. If Thrift, yes. If GraphQL, yes. |
Beta Was this translation helpful? Give feedback.
-
Also related to that is the new subscriptions support openapi-to-graphql just added |
Beta Was this translation helpful? Give feedback.
-
On this topic. We have a serverless architecture and the websocket connection is managed by AWS API Gateway, so behind that we only have lambdas. With that said, our current solution is a custom built one where we forward the 'subscribe' query to the upstream lambda with The whole GraphQL ecosystem seems to expect an always running websocket server for subscriptions, so I was wondering what's your take in serverless solutions and if GraphQL mesh could support something like this natively. Our solution is VERY similar to this one if you are wondering how it all works: https://github.com/michalkvasnicak/aws-lambda-graphql#readme |
Beta Was this translation helpful? Give feedback.
-
Now it is possible to consume webhooks as GraphQL Subscriptions; |
Beta Was this translation helpful? Give feedback.
-
Hello - I've been reading the code and it looks like mesh is hard coded to use the vanilla pubsub provided by This is a problem because it means mesh can only ever run as a single node. I'd love to be able to implement a pubsub for eventbridge and wire it in instead, that would require forking mesh though. Do you have a pattern for allowing different implementations of standard interfaces? Would it apply here? |
Beta Was this translation helpful? Give feedback.
-
Hello! I appreciate this project very much. Thank you all for the work you've put in.
I'm wondering if there is any information about implementing GraphQL subscriptions with graphql-mesh as a gateway. I have an Apollo gateway currently, and subscriptions have been on the Apollo road map for a while with no updates. I read that subscriptions are either supported or are going to be supported in graphql-mesh in the medium post here: https://medium.com/the-guild/graphql-mesh-query-anything-run-anywhere-433c173863b5
Are they already supported?
Thanks again!
Beta Was this translation helpful? Give feedback.
All reactions