-
```ts
yoga({
schema,
graphiql: {
subscriptionsProtocol: "WS", // this does nothing
},
})
```
https://the-guild.dev/graphql/yoga-server/docs/features/subscriptions#graphql-over-webs…
-
We should also look into replacing the Polling from Connect with Graphql Subscriptions. There is this library that uses Server Sent Events instead of Websockets: https://the-guild.dev/blog/graphql-ove…
-
### Context
Hi there. We're using `graphql-js` and serving subscriptions over WebSocket via [`graphql-ws`](https://github.com/enisdenjo/graphql-ws) (as recommended by Apollo for both server and cli…
-
## Summary
The ballerina graphql package provides client implementation to execute query and mutation operations by connecting to the server. But the subscription operation is not supported by the cl…
-
The latest release contains full implementation of Subscriptions, server and full support by GraphQLClient (Client in NGraphQL). Unit tests run successfully using this client.
The question comes abo…
-
Our [SPA application](https://parabol.co) transacts as much as it can via graphql over Websockets. Currently, the JS browers-sdk only sends the trace id, parent id, and trace flags as headers via wrap…
-
**Use case**
We would like to be able to use GraphQl subscriptions over SSE (Server Sent Events) instead of Websockets.
Out of scope: the merits and demerits of SSE vs Websockets. We just want it …
-
Server side ping messages are necessary to keep the websocket connection open on all types of platforms.
The particular platform I'm working with is react-native on Android
## Describe the…
-
Hello everybody,
I'm using graphql-dotnet project a lot and would like to thank you for the amazing product you build for the whole .Net community.
My company is building GraphQl-first services …
-
I needed subscriptions in my project and in the end had to make a different server for graphql yoga because graphql-ws subscriptions wouldn't work with Elysia.
The main issues are:
1. Elysia webs…