GraphQlClientGenerator icon indicating copy to clipboard operation
GraphQlClientGenerator copied to clipboard

GraphQL C# client generator

Results 16 GraphQlClientGenerator issues
Sort by recently updated
recently updated
newest added

As of now the code generation works only with the schema in JSON format. Please provide a feature to load the SDL version too. Meanwhile the feature is implemented, is...

Hi, trying very hard to figure out how to actually use these generated classes. I don't see anything about deserializing into them. Can I get an example please? I just...

Proposal to add nullability support to `RegexScalarFieldTypeMappingProvider`. Let's see an example: ``` { "patternBaseType": ".+", "patternValueType": "Long!", "patternValueName": ".+", "netTypeName": "long" }, { "patternBaseType": ".+", "patternValueType": "Long", "patternValueName": ".+", "netTypeName":...

Getting an error when attempting to generate a client for hashnode ([Hashnode](https://gql.hashnode.com/)) I am using the .net tool version w/ the following: `graphql-client-generator --serviceUrl https://gql.hashnode.com --outputPath . --namespace Hashnode.GraphQL` I...

The new [September 2025](https://spec.graphql.org/September2025/) spec allows [deprecating input values](https://github.com/graphql/graphql-spec/pull/805). Please add support to allow retrieving deprecated input fields and arguments from the introspection. Note that older servers may not support...

Is there a way to configure the generation process so that it will not add the QueryBuilderParameter code? So instead of this: ``` [JsonConverter(typeof (QueryBuilderParameterConverter))] public QueryBuilderParameter? Borrowers { get...