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

Originally created this ticket: https://github.com/graphql-dotnet/graphql-dotnet/issues/2008 But I used the wrong repository since this is a client package. Would be great if the repository could add support for SourceLink.

enhancement

Is there any possibility to create requests without strings. It seems ridiculous. I just want to consume graphql and there is https://graphql-code-generator.com/ which generates c# classes for response types. Great....

enhancement
help wanted

Hi, I am using the GraphQl.Client 3.2.1 on a project and I get an exception crashing the application after a while. I have a client that it connects to a...

Hello. I am using GraphQLHttpClient library (https://github.com/graphql-dotnet/graphql-client.git) for query from one net.core servise to other. Other service use GraphQLServer library (https://github.com/graphql-dotnet/server). Example types and queries is: ```c# public abstract class...

How can I remove the charset=utf-8 from the request header when using the SendQueryAsync? I have tried setting the GraphQLHttpClientOptions.MediaType to "application/json" (wich I also think is the default, so...

enhancement
good first issue

I have a case where I receive subscription messages that among other things contain enum values. Everything is fine if deserialization works, but if it fails (in this case because...

Both PascalCase and camelCase enum values fail to deserialize using the default (ConstantCaseEnumConverter) serializers. The GraphQL.Client.Serializer.Tests project tests serialization using the SerializeToStringTestData class. However, an equivalent deserialization test is not...

I'm trying to send this mutation: ```C# GraphQLRequest graphQLRequest = new GraphQLRequest() { Query = @"mutation( $order_code: Int!, $industry_code: String!, $wholesaler_code: String!, $wholesaler_order_code: String, $payment_term: String, $consideration: String, $is_free_good_discount: Boolean,...

bug

Reported by @stuartdga as comment on commit 94a1e32 > I believe that you introduced a breaking change. Before this version we could use the following: > > var settings =...

bug

This client seems like a very thin wrapper over a HttpClient using dynamic. It would be nice to add many of the features in the Apollo JavaScript client such as...

enhancement