File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public async Task<GraphQLResponse<TResponse>> SendQueryAsync<TResponse>(GraphQLR
7373 if ( Options . UseWebSocketForQueriesAndMutations )
7474 return await _graphQlHttpWebSocket . SendRequest < TResponse > ( request , cancellationToken ) ;
7575
76- return await SendHttpPostRequestAsync < TResponse > ( request , cancellationToken ) ;
76+ return await SendHttpRequestAsync < TResponse > ( request , cancellationToken ) ;
7777 }
7878
7979 /// <inheritdoc />
@@ -124,7 +124,7 @@ public IObservable<GraphQLResponse<TResponse>> CreateSubscriptionStream<TRespons
124124
125125 #region Private Methods
126126
127- private async Task < GraphQLHttpResponse < TResponse > > SendHttpPostRequestAsync < TResponse > ( GraphQLRequest request , CancellationToken cancellationToken = default )
127+ private async Task < GraphQLHttpResponse < TResponse > > SendHttpRequestAsync < TResponse > ( GraphQLRequest request , CancellationToken cancellationToken = default )
128128 {
129129 var preprocessedRequest = await Options . PreprocessRequest ( request , this ) ;
130130
You can’t perform that action at this time.
0 commit comments