gql
gql copied to clipboard
Libraries supporting GraphQL in Dart
Fix: https://github.com/gql-dart/gql/issues/453 Before ``` "Lore ipsum One Two" ``` After: ``` "Lore ipsum\nOne\nTwo" ```
When a String is on format ``` "Lore ipsum One Two" ``` The query execution should valid due to "Invalid character on string literal" error appear, for fixing it the...
When converting schema to `DocumentNode` object via `parseString` deprecated decorators (`@deprecated`) seem absent in the `DocumentNode` object.
The request function has a return type of `Stream`. As a result, the catch block will use `Stream.error()` to asynchronously propagate the exception.
I'm encountering a timeout exception when using the `DioLink._executeDioRequest` method in my app. It seems that when requests are timeout, it throws an uncaught exception. I have an PR open...
fix(graphql-transport-ws): ensure result message (next or error) is processed before complete message; do not close connection if keepalive is on
There is a race condition in the `subscribe` function of the _Client class. If the dispose function returned by the `subscribe` method is called which calls the `releaser()` method, and...
Noticed that [HttpLink got migrated to Utf8Decoder +JsonDecoder](https://github.com/gql-dart/gql/commit/dcb03fae5c4721e54cb97c1ecb9782f88145e119). Could we get similar improvements in TransportWebSocketLink [here](https://github.com/gql-dart/gql/blob/dcb03fae5c4721e54cb97c1ecb9782f88145e119/links/gql_websocket_link/lib/src/graphql_transport_ws.dart#L463)? I would love to see the example usage of the new approach with TransportWebSocketLink.