graphql-client icon indicating copy to clipboard operation
graphql-client copied to clipboard

A GraphQL Client for .NET Standard

Results 130 graphql-client issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

Follow up on #235

enhancement
help wanted

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" }); ```

enhancement
question

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...

enhancement

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...

enhancement
good first issue

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

enhancement
help wanted

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 -->...

bug