GraphQL.Client
5.1.0
See the version list below for details.
dotnet add package GraphQL.Client --version 5.1.0
NuGet\Install-Package GraphQL.Client -Version 5.1.0
<PackageReference Include="GraphQL.Client" Version="5.1.0" />
<PackageVersion Include="GraphQL.Client" Version="5.1.0" />
<PackageReference Include="GraphQL.Client" />
paket add GraphQL.Client --version 5.1.0
#r "nuget: GraphQL.Client, 5.1.0"
#addin nuget:?package=GraphQL.Client&version=5.1.0
#tool nuget:?package=GraphQL.Client&version=5.1.0
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 Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- GraphQL.Client.Abstractions (>= 5.1.0)
- GraphQL.Client.Abstractions.Websocket (>= 5.1.0)
- System.Net.WebSockets.Client.Managed (>= 1.0.22)
- System.Reactive (>= 5.0.0)
-
.NETStandard 2.0
- GraphQL.Client.Abstractions (>= 5.1.0)
- GraphQL.Client.Abstractions.Websocket (>= 5.1.0)
- System.Reactive (>= 5.0.0)
NuGet packages (107)
Showing the top 5 NuGet packages that depend on GraphQL.Client:
Package | Downloads |
---|---|
GraphQL.Client.Extensions
Extensions for GraphQL.Client to build graphQL queries from a C# model. |
|
Speckle.Core
Core is the .NET SDK for Speckle |
|
SauceLabs.Visual
Sauce Labs Visual's integration allows customers to run Visual Testing while running their Selenium sessions. |
|
Queryout.SmartGateway.Sdk
Package Description |
|
Trackmatic.Client
.Net rest client library for Trackmatic rest api |
GitHub repositories (17)
Showing the top 17 popular GitHub repositories that depend on GraphQL.Client:
Repository | Stars |
---|---|
Squidex/squidex
Headless CMS and Content Managment Hub
|
|
0x5bfa/FluentHub
A stylish yet powerful GitHub client for Windows
|
|
getsentry/sentry-dotnet
Sentry SDK for .NET
|
|
sharpenrocks/Sharpen
Visual Studio extension that intelligently introduces new C# features into your existing codebase
|
|
specklesystems/speckle-sharp
.NET SDK, Schema and Connectors: Revit, Rhino, Grasshopper, Dynamo, ETABS, AutoCAD, Civil3D & more.
|
|
fmbot-discord/fmbot
.fmbot is a social Discord bot that provides music statistics for you and your friends.
|
|
GitTools/GitReleaseManager
Tool for creating and exporting releases for software applications hosted on GitHub
|
|
insomniachi/Totoro
A Windows 10/11 only application that is a go to for all things anime.
|
|
SaviorXTanren/mixer-mixitup
Streaming bot application for handling chat, events, moderation, and other streamer assistance features
|
|
VirtoCommerce/vc-storefront
Virto Commerce Storefront - ASP.NET Core 8.0
|
|
TheUltimateC0der/listrr
listrr.pro creates and maintains lists on trakt.tv completely automated based on your filters.
|
|
FormCms/FormCms
Open-source headless CMS built with ASP.NET Core (C#) and React, featuring REST APIs, GraphQL, and a GrapesJS page designer.
|
|
Seuntjie900/DiceBot
Flexible and feature rich betting bot for a variety of crypto-currency dice sites
|
|
pkuehnel/TeslaSolarCharger
A software to let your Tesla charge with solar energy ☀
|
|
CyanLabs/Syn3Updater
Windows application for updating Ford Sync 3 infotainment systems
|
|
SapiensAnatis/Dawnshard
Server emulator for Dragalia Lost
|
|
the-hideout/TarkovMonitor
Monitor Tarkov log files to help track progress, queues, and groups
|
Version | Downloads | Last updated |
---|---|---|
6.1.0 | 3,565,295 | 5/21/2024 |
6.0.5 | 328,174 | 4/22/2024 |
6.0.4 | 14,230 | 4/22/2024 |
6.0.3 | 416,482 | 3/20/2024 |
6.0.2 | 1,880,794 | 11/23/2023 |
6.0.1 | 636,165 | 9/29/2023 |
6.0.0 | 2,525,562 | 4/13/2023 |
5.1.1 | 2,072,247 | 1/23/2023 |
5.1.0 | 3,009,611 | 8/1/2022 |
5.0.2 | 1,148,550 | 7/19/2022 |
5.0.1 | 26,103 | 7/18/2022 |
5.0.0 | 46,347 | 7/15/2022 |
4.0.2 | 5,461,605 | 12/16/2021 |
4.0.1 | 588,724 | 10/29/2021 |
4.0.0 | 216,266 | 10/27/2021 |
3.2.4 | 3,180,221 | 6/6/2021 |
3.2.3 | 1,783,699 | 4/2/2021 |
3.2.2 | 313,949 | 3/2/2021 |
3.2.1 | 616,878 | 1/7/2021 |
3.2.0 | 843,630 | 10/15/2020 |
3.1.9 | 693,522 | 9/17/2020 |
3.1.8 | 3,143 | 9/17/2020 |
3.1.7 | 4,570 | 9/15/2020 |
3.1.6 | 163,334 | 8/27/2020 |
3.1.5 | 103,280 | 8/24/2020 |
3.1.4 | 68,267 | 8/15/2020 |
3.1.3 | 543,265 | 6/22/2020 |
3.1.2 | 257,908 | 5/29/2020 |
3.1.1 | 18,678 | 5/26/2020 |
3.1.0 | 354,647 | 4/21/2020 |
3.0.3 | 19,881 | 4/19/2020 |
3.0.2 | 62,247 | 4/16/2020 |
3.0.1 | 79,255 | 3/26/2020 |
3.0.0 | 8,328 | 3/23/2020 |
2.1.2 | 140,612 | 3/9/2020 |
2.1.0 | 17,636 | 2/21/2020 |
2.0.0 | 56,933 | 2/7/2020 |
2.0.0-beta0011 | 643 | 2/7/2020 |
2.0.0-alpha.3 | 453,267 | 11/6/2018 |
2.0.0-alpha.2 | 89,035 | 9/13/2018 |
2.0.0-alpha.1 | 1,312 | 8/27/2018 |
1.0.3 | 3,793,122 | 5/7/2018 |
1.0.2 | 103,451 | 3/12/2018 |
1.0.1 | 32,426 | 1/27/2018 |
1.0.0 | 25,337 | 12/20/2017 |
1.0.0-beta3 | 1,227 | 12/17/2017 |
1.0.0-beta2 | 1,229 | 12/11/2017 |
1.0.0-beta1 | 1,189 | 12/10/2017 |