graphql-client
graphql-client copied to clipboard
A GraphQL Client for .NET Standard
I just am a new with GraphQLClient with Hasura, any body could share about default header configure example our host 192.168.1.100:8082/v1/graphql and x-hasura-admin-secret=abc123. I have try with another GraphQL server...
I am trying to implement the same example given below in python with .net and this grahQL-client nuget but I am always getting error that the "server closed the connection...
Hi, First of all, thanks for this awesome library, it's been quite helpful so far! I just wanted to point out one issue I came across recently while using this...
Any plans to have Object => Query support? ``` class hero { string id; } client.executeQuery(new Hero { id = "1" }); ```
This will help in making the library usable with il2cpp/no dynamics/WebGL based use cases including Unity which is a big community. The consumer of the API can perform the deserialized...
I have long wanted to ask what is the reason for the presence of such code. ```c# public override int GetHashCode() { unchecked { var hashCode = EqualityComparer.Default.GetHashCode(Data); { if...
Hi, Does this client lib support graphql query batching? If yes, would be appreciated if you guy can provide some sample on how to do this. Thanks. Jeff
Hi, GraphQL Client is not able to reconnect if graphQL server restart. In my local copy below is the change I have added. ```csharp GraphQL.Client --> Http --> GraphQLHttpWebSocket.cs -->...