![]() |
VOOZH | about |
dotnet add package GraphQL.Client.LocalExecution --version 6.1.0
NuGet\Install-Package GraphQL.Client.LocalExecution -Version 6.1.0
<PackageReference Include="GraphQL.Client.LocalExecution" Version="6.1.0" />
<PackageVersion Include="GraphQL.Client.LocalExecution" Version="6.1.0" />Directory.Packages.props
<PackageReference Include="GraphQL.Client.LocalExecution" />Project file
paket add GraphQL.Client.LocalExecution --version 6.1.0
#r "nuget: GraphQL.Client.LocalExecution, 6.1.0"
#:package GraphQL.Client.LocalExecution@6.1.0
#addin nuget:?package=GraphQL.Client.LocalExecution&version=6.1.0Install as a Cake Addin
#tool nuget:?package=GraphQL.Client.LocalExecution&version=6.1.0Install as a Cake Tool
A GraphQL Client for .NET Standard over HTTP.
Provides the following packages:
| Package | Downloads | Nuget Latest |
|---|---|---|
| GraphQL.Client | 👁 Nuget |
👁 Nuget |
| GraphQL.Client.Abstractions | 👁 Nuget |
👁 Nuget |
| GraphQL.Client.Abstractions.Websocket | 👁 Nuget |
👁 Nuget |
| GraphQL.Client.LocalExecution | 👁 Nuget |
👁 Nuget |
| GraphQL.Client.Serializer.Newtonsoft | 👁 Nuget |
👁 Nuget |
| GraphQL.Client.Serializer.SystemTextJson | 👁 Nuget |
👁 Nuget |
| GraphQL.Primitives | 👁 Nuget |
👁 Nuget |
The Library will try to follow the following standards and documents:
The intended use of GraphQLHttpClient is to keep one instance alive per endpoint (obvious in case you're
operating full websocket, but also true for regular requests) and is built with thread-safety in mind.
// To use NewtonsoftJsonSerializer, add a reference to
// NuGet package GraphQL.Client.Serializer.Newtonsoft
var graphQLClient = new GraphQLHttpClient(
"https://api.example.com/graphql",
new NewtonsoftJsonSerializer());
GraphQLHttpClient is meant to be used as a single long-lived instance per endpoint (i.e. register as singleton in a DI system), which should be reused for multiple requests.
var heroRequest = new GraphQLRequest {
Query = """
{
hero {
name
}
}
"""
};
var personAndFilmsRequest = new GraphQLRequest {
Query ="""
query PersonAndFilms($id: ID) {
person(id: $id) {
name
filmConnection {
films {
title
}
}
}
}
""",
OperationName = "PersonAndFilms",
Variables = new {
id = "cGVvcGxlOjE="
}
};
Be careful when using byte[] in your variables object, as most JSON serializers will treat that as binary data.
If you really need to send a list of bytes with a byte[] as a source, then convert it to a List<byte> first, which will tell the serializer to output a list of numbers instead of a base64-encoded string.
public class ResponseType
{
public PersonType Person { get; set; }
}
public class PersonType
{
public string Name { get; set; }
public FilmConnectionType FilmConnection { get; set; }
}
public class FilmConnectionType {
public List<FilmContentType> Films { get; set; }
}
public class FilmContentType {
public string Title { get; set; }
}
var graphQLResponse = await graphQLClient.SendQueryAsync<ResponseType>(personAndFilmsRequest);
var personName = graphQLResponse.Data.Person.Name;
Using the extension method for anonymously typed responses (namespace GraphQL.Client.Abstractions) you could achieve the same result with the following code:
var graphQLResponse = await graphQLClient.SendQueryAsync(
personAndFilmsRequest,
() => new { person = new PersonType()});
var personName = graphQLResponse.Data.person.Name;
Note that the field in the GraphQL response which gets deserialized into the response object is the data field.
A common mistake is to try to directly use the PersonType class as response type (because thats the thing you actually want to query), but the returned response object contains a property person containing a PersonType object (like the ResponseType modelled above).
public class UserJoinedSubscriptionResult {
public ChatUser UserJoined { get; set; }
public class ChatUser {
public string DisplayName { get; set; }
public string Id { get; set; }
}
}
var userJoinedRequest = new GraphQLRequest {
Query = @"
subscription {
userJoined{
displayName
id
}
}"
};
IObservable<GraphQLResponse<UserJoinedSubscriptionResult>> subscriptionStream
= client.CreateSubscriptionStream<UserJoinedSubscriptionResult>(userJoinedRequest);
var subscription = subscriptionStream.Subscribe(response =>
{
Console.WriteLine($"user '{response.Data.UserJoined.DisplayName}' joined")
});
subscription.Dispose();
Automatic persisted queries (APQ) are supported since client version 6.1.0.
APQ can be enabled by configuring GraphQLHttpClientOptions.EnableAutomaticPersistedQueries to resolve to true.
By default, the client will automatically disable APQ for the current session if the server responds with a PersistedQueryNotSupported error or a 400 or 600 HTTP status code.
This can be customized by configuring GraphQLHttpClientOptions.DisableAPQ.
To re-enable APQ after it has been automatically disabled, GraphQLHttpClient needs to be disposed an recreated.
APQ works by first sending a hash of the query string to the server, and only sending the full query string if the server has not yet cached a query with a matching hash.
With queries supplied as a string parameter to GraphQLRequest, the hash gets computed each time the request is sent.
When you want to reuse a query string (propably to leverage APQ 😉), declare the query using the GraphQLQuery class. This way, the hash gets computed once on construction
of the GraphQLQuery object and handed down to each GraphQLRequest using the query.
GraphQLQuery query = new("""
query PersonAndFilms($id: ID) {
person(id: $id) {
name
filmConnection {
films {
title
}
}
}
}
""");
var graphQLResponse = await graphQLClient.SendQueryAsync<ResponseType>(
query,
"PersonAndFilms",
new { id = "cGVvcGxlOjE=" });
.NET 7.0 introduced the StringSyntaxAttribute to have a unified way of telling what data is expected in a given string or ReadOnlySpan<char>. IDEs like Visual Studio and Rider can then use this to provide syntax highlighting and checking.
From v6.0.4 on all GraphQL string parameters in this library are decorated with the [StringSyntax("GraphQL")] attribute.
Currently, there is no native support for GraphQL formatting and syntax highlighting in Visual Studio, but the GraphQLTools Extension provides that for you.
For Rider, JetBrains provides a Plugin, too.
To leverage syntax highlighting in variable declarations, use the GraphQLQuery class.
Blazor WebAssembly differs from other platforms as it does not support all features of other .NET runtime implementations. For instance, the following WebSocket options properties are not supported and will not be set:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 6.1.0 | 34,803 | 5/21/2024 |
| 6.0.5 | 856 | 4/22/2024 |
| 6.0.4 | 282 | 4/22/2024 |
| 6.0.3 | 569 | 3/20/2024 |
| 6.0.2 | 5,261 | 11/23/2023 |
| 6.0.1 | 523 | 9/29/2023 |
| 6.0.0 | 25,486 | 4/13/2023 |
| 5.1.1 | 37,696 | 1/23/2023 |
| 5.1.0 | 23,141 | 8/1/2022 |
| 5.0.2 | 639 | 7/19/2022 |
| 5.0.1 | 604 | 7/18/2022 |
| 5.0.0 | 3,756 | 7/15/2022 |
| 4.0.2 | 10,208 | 12/16/2021 |
| 4.0.1 | 926 | 10/29/2021 |
| 4.0.0 | 657 | 10/27/2021 |
| 3.2.4 | 4,125 | 6/6/2021 |
| 3.2.3 | 938 | 4/2/2021 |
| 3.2.2 | 1,352 | 3/2/2021 |
| 3.2.1 | 733 | 1/7/2021 |
| 3.2.0 | 3,841 | 10/15/2020 |