The goal of this library is to provide a runtime agnostic implementation for GraphQL-over-Websockets.
The library only supports subscriptions for now but will eventually support queries and mutations.
It supports the websocket libraries async-tungstenite, tokio-tungstenite and ws-stream-wasm, and
The library offers integrations with some popular GraphQL clients with feature flags:
- graphql-client:
features = ["client-graphql-client"]
- cynic:
features = ["client-cynic"]
The documentation is quite limited at the moment, here are some sources:
By default, the library will log some messages at the trace
level to help you debug.
It is possible to turn off the logging entirely by using the no-logging
feature.