graphql-client
graphql-client copied to clipboard
A GraphQL Client for .NET Standard
My goal is to be able to utilise the `MissingMemberHandling.Error` option of the `JsonSerializerSettings`, instead of the default `MissingMemberHandling.Ignore`. Why? because its a very useful way to ensure that the...
I'm trying to use the GraphQL.Client library in a project that interacts with a 3rd party API. Currently, the API only accepts `application/json` for the ACCEPT header. Is there an...
Hi, I am investigating a problem with high CPU usage. Here is my server: Windows Azure Premium v2 P2V2 210 CPU 2 Memory 7 Remote Storage 250 Scale 30 I...
# Issue Some GraphQL APIs don’t handle optional filters properly — when a filter is not needed, it should be **omitted** from the query. Instead, we’re forced to rebuild the...
Connections work great, until they don't. I'm having a hard time diagnosing what is happening and wish to get some help please. The application averages ~10GB memory usage, and after...
HI I'm started using it in my.net 8 app but having an issue, al results are being logged in my journalctl. All my logs are set as defulto to Error....
Code - ```csharp // startup/registration DI code - services.AddHttpClient("GraphQLClient") .ConfigureHttpClient(client => { client.BaseAddress = new Uri("https://api.example.com/graphql"); }); services.AddScoped(sp => { var httpClientFactory = sp.GetRequiredService(); var httpClient = httpClientFactory.CreateClient("GraphQLClient"); return new...
When the ws socket gets closed by peer, a closeResponse object is created but never used. As the peer also is able to specify a close status + reason if...
I am trying to use AppSync for my project. Although I have handled everything according to the design documentation, I keep encountering the error: ` {"payload":{"errors":[{"message":"Required headers are missing.","errorCode":400}]},"type":"connection_error"} `...