GraphQlClientGenerator icon indicating copy to clipboard operation
GraphQlClientGenerator copied to clipboard

GraphQL C# client generator

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

Used NuGet Packages: * GraphQlClientGenerator version 0.9.9 * GraphQl.Client version 5.0.2 * GraphQL.Client.Serializer.Newtonsoft version 5.0.2 Used Language: C# 10 .NET 6 (VS 2022 professional version 17.2.6) I am trying to...

generate queries from graphql schema for example from the file: type Mutation { # Create a tweet for a user # consumer keys and tokens are not required for dynamo...

Used NuGet Packages: GraphQlClientGenerator version 0.9.12 GraphQl.Client version 5.1.0 Used Language: net6.0 for [query-parameters](https://github.com/Husqvik/GraphQlClientGenerator#query-parameters) I would like to suggest to implement a possibility to add parameters without values so for...

Note: This is a work in progress. It contains a lot of duplicated code. It does not cover all of the possible "With..." methods. The purpose of this PR is...

I can't figure out how to build graphql variable object properly, the error is mainly that the graphQL server wants everything in camel case, but json serilizing for some properties...

There's probably a more elegant way to accomplish this, but it's working for me. I don't see any test coverage for the BaseClasses resource, but point me in that direction...

Hi. I have a few questions regarding `GraphQlQueryParameter` and `QueryBuilderParameter` design. The first one is used to create the parametrized query (`WithParameter` method). The second is to provide an inline...

Hey. We need a few features that require refactoring of the generated code. I would be happy to provide PR's for them, but first want to coordinate the changes with...

Consider the following schema ```graphql type Device { enabled: Toggle name: String } enum Toggle { DISABLED ENABLED } type Query { devices(isEnabled: Toggle): [Device!]! } ``` And the following...