gql icon indicating copy to clipboard operation
gql copied to clipboard

Libraries supporting GraphQL in Dart

Results 88 gql issues
Sort by recently updated
recently updated
newest added

It would be great to make a custom header dynamic, so every request would have a different value of "X-My-Header". Can we provide a function, as it is done for...

Hello, @knaeckeKami, i have this very basic app that uses dio and gql. My problem is that the interceptor for retry is not being triggered. I just wanted to ask...

This is just an idea for an alternative implementation to #417 - Revert "[gql_code_builder] add dataClassConfig option to reuse class definitions for field selections that include only a single inline...

Hi @knaeckeKami This PR is a succession of https://github.com/gql-dart/gql/pull/413 After the above PR, our team have developed our ongoing project with dev release version which includes above PR. And we...

Nested Collection types like `[[Int]]` currently don't work when serializing due to https://github.com/google/built_value.dart/issues/124 Workaround: allow adding custom builder factories, similar to custom serializers

I am mostly the only one reviewing issues and PRs in this Repo. This is partly my fault, as I did not actively look out for maintainers. The original vision...

When a WebSocketLink is closed due to the `inactivityTimeout` running out, it's automatically reconnected due to `autoReconnect = true`. This defeats the purpose of an `inactivityTimeout`.

If LinkException would use a `sealed` class then we would be enforced to handle/decide not to handle, different exceptions. Right now I go in to the source code to see...

I switched to gql_websocket_link to connect to my GraphQL backend (before I used `hasura_connect`). Since this switch, Firebase Crashlytics reports: ``` WebSocketChannelException: WebSocketChannelException: SocketException: Failed host lookup: '' (OS Error:...

Hi, I use want to use a WebSocketLink, but for authentication I need to append the current auth token to the url (required by server). I was thinking about something...