graphql-client
graphql-client copied to clipboard
A GraphQL Client for .NET Standard
Inner Exception: MissingMethodException: Method not found: 'Void Newtonsoft.Json.Serialization.DefaultContractResolver.set_IgnoreIsSpecifiedMembers(Boolean)'. code: ``` var graphQLOptions = new GraphQLHttpClientOptions { EndPoint = new Uri(_gqlUrl, UriKind.Absolute), }; var graphQLClient = new GraphQLHttpClient(graphQLOptions, new NewtonsoftJsonSerializer());
Hi, we are getting outOfMemory exception after 700-800 request executes successfully. Error stack : System.OutOfMemoryException: at System.Threading.Thread.StartInternal (System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e) at System.Threading.Thread.Start (System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e) at System.Reactive.Concurrency.EventLoopScheduler.EnsureThread (System.Reactive,...
When I have a subscription which has more than 20 associations it is failing. If I use graphql playground the subscription is completing correctly. Also just to note I have...
I have a multi tenant app, and I need to pass through a token per subscription. Currently I am using the ConfigureWebSocketConnectionInitPayload, that sends the appropriate token I require. But...
Hi everyone, I have a proof of concept on AppSync/GraphQL.Client. I am successfully querying and creating GraphQL mutations. However, I get an error when trying to subscribe. **Error**: ` Unable...
I am new to GrahpQL and I am working on an integration project where our customer has a GraphQL API. I have a query that looks like this: ```graphql {...
### Package info Package: GraphQL.Client.LocalExecution Version: 3.2.3 ### Description `MissingMethodException` thrown when call `SendQueryAsync`. ### Code to reproduce ```csharp var sourceSchema = Schema.For(@" type QT { idField: ID intField: Int...
### Problem As the title suggestest i send a graphql request, i do this in 3 different situations but in one of those the method SendQueryAsync just stops without any...
When using these websocket options, subscriptions fail silently without any error. Is this the correct usage? ```c-sharp client.Options.ConfigureWebSocketConnectionInitPayload = o => new Dictionary { {"X-DUG-Auth", "XXXXXXXXXXXXXX"} }; ```
I've dabbled with this library in the past and, like others have mentioned, was concerned (and put off) that the amount of maintenance was decreasing. I'm impressed by how much...