GraphQL.Client
5.1.1
dotnet add package GraphQL.Client --version 5.1.1
NuGet\Install-Package GraphQL.Client -Version 5.1.1
<PackageReference Include="GraphQL.Client" Version="5.1.1" />
paket add GraphQL.Client --version 5.1.1
#r "nuget: GraphQL.Client, 5.1.1"
// Install GraphQL.Client as a Cake Addin
#addin nuget:?package=GraphQL.Client&version=5.1.1
// Install GraphQL.Client as a Cake Tool
#tool nuget:?package=GraphQL.Client&version=5.1.1
GraphQL.Client
A GraphQL Client for .NET Standard over HTTP.
Provides the following packages:
Specification:
The Library will try to follow the following standards and documents:
Usage:
Create a GraphQLHttpClient
// To use NewtonsoftJsonSerializer, add a reference to NuGet package GraphQL.Client.Serializer.Newtonsoft
var graphQLClient = new GraphQLHttpClient("https://api.example.com/graphql", new NewtonsoftJsonSerializer());
Create a GraphQLRequest:
Simple Request:
var heroRequest = new GraphQLRequest {
Query = @"
{
hero {
name
}
}"
};
OperationName and Variables Request:
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.
Execute Query/Mutation:
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;
Use Subscriptions
public class UserJoinedSubscriptionResult {
public ChatUser UserJoined { get; set; }
public class ChatUser {
public string DisplayName { get; set; }
public string Id { get; set; }
}
}
Create subscription
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")
});
End Subscription
subscription.Dispose();
Useful Links:
Blazor WebAssembly Limitations
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 |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.6.1
- GraphQL.Client.Abstractions (>= 5.1.1)
- GraphQL.Client.Abstractions.Websocket (>= 5.1.1)
- System.Net.WebSockets.Client.Managed (>= 1.0.22)
- System.Reactive (>= 5.0.0)
-
.NETStandard 2.0
- GraphQL.Client.Abstractions (>= 5.1.1)
- GraphQL.Client.Abstractions.Websocket (>= 5.1.1)
- System.Reactive (>= 5.0.0)
NuGet packages (69)
Showing the top 5 NuGet packages that depend on GraphQL.Client:
Package | Downloads |
---|---|
GitOps.Clients.GitHub
Package Description |
|
Queryout.SmartGateway.Sdk
Package Description |
|
Trackmatic.Client
.Net rest client library for Trackmatic rest api |
|
Speckle.Core
Core is the .NET SDK for Speckle |
|
GraphQL.Client.Extensions
Extensions for GraphQL.Client to build graphQL queries from a C# model. |
GitHub repositories (10)
Showing the top 5 popular GitHub repositories that depend on GraphQL.Client:
Repository | Stars |
---|---|
Squidex/squidex
Headless CMS and Content Managment Hub
|
|
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 7 Clean Architecture (Microservices + Dapr, Modular Monolith, Monolith), Blazor, Angular 15, React 18, Vue 3, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, Identity Server, Entity Framework Core, Selenium, SignalR, Hosted Services, Health Checks, Rate Limiting, Cloud (Azure, AWS) Services, ...
|
|
sharpenrocks/Sharpen
Visual Studio extension that intelligently introduces new C# features into your existing codebase
|
|
FluentHub/FluentHub
A stylish yet powerful GitHub client
|
|
specklesystems/speckle-sharp
.NET SDK, Schema and Connectors: Revit, Rhino, Grasshopper, Dynamo, ETABS, AutoCAD, Civil3D & more.
|
Version | Downloads | Last updated |
---|---|---|
5.1.1 | 131,623 | 1/23/2023 |
5.1.0 | 952,800 | 8/1/2022 |
5.0.2 | 185,207 | 7/19/2022 |
5.0.1 | 13,514 | 7/18/2022 |
5.0.0 | 16,745 | 7/15/2022 |
4.0.2 | 2,794,759 | 12/16/2021 |
4.0.1 | 326,044 | 10/29/2021 |
4.0.0 | 54,518 | 10/27/2021 |
3.2.4 | 2,034,863 | 6/6/2021 |
3.2.3 | 1,027,385 | 4/2/2021 |
3.2.2 | 219,200 | 3/2/2021 |
3.2.1 | 395,782 | 1/7/2021 |
3.2.0 | 529,367 | 10/15/2020 |
3.1.9 | 507,325 | 9/17/2020 |
3.1.8 | 1,747 | 9/17/2020 |
3.1.7 | 3,511 | 9/15/2020 |
3.1.6 | 131,445 | 8/27/2020 |
3.1.5 | 69,545 | 8/24/2020 |
3.1.4 | 43,091 | 8/15/2020 |
3.1.3 | 376,703 | 6/22/2020 |
3.1.2 | 126,096 | 5/29/2020 |
3.1.1 | 9,680 | 5/26/2020 |
3.1.0 | 251,003 | 4/21/2020 |
3.0.3 | 12,386 | 4/19/2020 |
3.0.2 | 60,703 | 4/16/2020 |
3.0.1 | 59,541 | 3/26/2020 |
3.0.0 | 5,841 | 3/23/2020 |
2.1.2 | 107,466 | 3/9/2020 |
2.1.0 | 11,764 | 2/21/2020 |
2.0.0 | 44,764 | 2/7/2020 |
2.0.0-beta0011 | 385 | 2/7/2020 |
2.0.0-alpha.3 | 345,592 | 11/6/2018 |
2.0.0-alpha.2 | 59,127 | 9/13/2018 |
2.0.0-alpha.1 | 1,002 | 8/27/2018 |
1.0.3 | 2,031,551 | 5/7/2018 |
1.0.2 | 49,115 | 3/12/2018 |
1.0.1 | 26,416 | 1/27/2018 |
1.0.0 | 4,557 | 12/20/2017 |
1.0.0-beta3 | 860 | 12/17/2017 |
1.0.0-beta2 | 816 | 12/11/2017 |
1.0.0-beta1 | 805 | 12/10/2017 |