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

We are facing a piquant situation using GraphQLClient's SendQueryAsync method to call Monday.com API. The line goes like this var response = await graphQLClient.SendQueryAsync(request) If the server returns a proper...

I am using GraphQL.Client for .NET Standard to connect aws AppSync, but the connection is occasionally disconnected. I have following code to check connection status `_graphQlClient.WebsocketConnectionState.Subscribe(state => { _isWebSocketConnected =...

My app suddenly went boom along with the following exception. Not entirely sure how/where to properly catch it. Most probably during sending a Pong ( my app never actively send...

Hi ```csharp internal class WebApiAuthTokenService { private static GraphQLHttpClient GraphQLClientForCreateToken; private readonly string _webApiAddress; public WebApiAuthTokenService(string WebApiAddress) { _webApiAddress = WebApiAddress; GraphQLClientForCreateToken = new GraphQLHttpClient(_webApiAddress, new NewtonsoftJsonSerializer()); } public async...

I have been running into System.InvalidCastException when trying to set up a GraphQL subscription. I have tracked the error occuring to line 318 of GraphQLHttpWebSocket in the repo: `var certs...

Sometimes I make graphQL requests using graphQL client but the server returns something like this: `"GraphQL.Validation.InvalidVariableError: Variable '$filter' is invalid. Unrecognized input fields 'operation' for type 'FilterGQLInputType'.\n at GraphQL.Validation.ValidationContext.g__ParseValueObject|39_3(IInputObjectGraphType graphType,...

Hi there, for querying a local instance of my graphql instance I'm using the GraphQLLocalExecutionClient. But for specific reasons, I also need to provide user details (username, credentials, ..) for...

Hi there, I would like to ask if there is an easy way to access requested fields from an executed query? My processing looks like that: 1) receive query-string from...

this doesn't happen always, but it happens quite often and out of the 7 services I am connecting to, there is one, that causes this most often, but it's not...

GraphQLHttpRequest.ToHttpRequestMessage method creates new HttpRequestMessage but there is no way to pass custom header to this new HttpRequestMessage. For our unit tests, we need to pass auth header into HttpRequestMessage....