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 am just starting to experiment with graphql and the graphql.client and have a pretty straight-forward mutation to add a new user: ``` mutation CreateTheUser($input: CreateUserInput!) { createUser(input: $input) {...

## Description trying to use `SystemTextJsonSerializer(new JsonSerializerOptions() { ReferenceHandler = ReferenceHandler.Preserve })` to ignore cycles in many to many relationships doesn't work because it distorts the json and the server...

Is it possible to add strong name signing for all the client dlls? Our company enforces strong name singing check during build and runtime, I tried StrongNamer, but it doesn't...

fixes #548 @rose-a @Shane32 please review, especially TODO note about extensions type Also I would like to note that design of GraphQL client from this repo allows to send arbitrary...

enhancement

When using persisted queries the server is expected to return BadRequest whenever hash isn't correct or wasn't registered yet. Such responses are part of the process and come as plain...

I think you should put the content in there, too... then people can evaluate plaintext error messages... **Always** having the raw content in there might be beneficial for general debugging,...

![изображение](https://user-images.githubusercontent.com/21261007/234509684-faf303a7-9f01-4bd8-a4b1-3c578def0f22.png)

APQ (Automatic Persisted Queries) are strandard and also a requirement for some GraphQL servers and they are also implemented in the graphql-server since 5.3 https://github.com/graphql-dotnet/graphql-dotnet/pull/3134 It would be cool to...

enhancement

Is there a way to dynamically build queries based on schema available, schemas have special type 'query', was looking for a way to build query for the client based on...

question