GraphQL.Client.Serializer.Newtonsoft 5.1.1

.NET Standard 2.0
dotnet add package GraphQL.Client.Serializer.Newtonsoft --version 5.1.1
NuGet\Install-Package GraphQL.Client.Serializer.Newtonsoft -Version 5.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="5.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GraphQL.Client.Serializer.Newtonsoft --version 5.1.1
#r "nuget: GraphQL.Client.Serializer.Newtonsoft, 5.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GraphQL.Client.Serializer.Newtonsoft as a Cake Addin
#addin nuget:?package=GraphQL.Client.Serializer.Newtonsoft&version=5.1.1

// Install GraphQL.Client.Serializer.Newtonsoft as a Cake Tool
#tool nuget:?package=GraphQL.Client.Serializer.Newtonsoft&version=5.1.1

GraphQL.Client

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

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();

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
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (43)

Showing the top 5 NuGet packages that depend on GraphQL.Client.Serializer.Newtonsoft:

Package Downloads
GitOps.Clients.GitHub

Package Description

Queryout.SmartGateway.Sdk

Package Description

Trackmatic.Client

.Net rest client library for Trackmatic rest api

Logibricks.Utility

Package Description

GraphQL.Client.LocalExecution

A GraphQL Client which executes the queries directly on a provided GraphQL schema using graphql-dotnet

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on GraphQL.Client.Serializer.Newtonsoft:

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, ...
FluentHub/FluentHub
A stylish yet powerful GitHub client
sharpenrocks/Sharpen
Visual Studio extension that intelligently introduces new C# features into your existing codebase
VirtoCommerce/vc-storefront
Virto Commerce Storefront - ASP.NET Core 6.0
Version Downloads Last updated
5.1.1 84,218 1/23/2023
5.1.0 669,608 8/1/2022
5.0.2 99,975 7/19/2022
5.0.1 15,821 7/18/2022
5.0.0 13,459 7/15/2022
4.0.2 1,737,540 12/16/2021
4.0.1 267,126 10/29/2021
4.0.0 40,226 10/27/2021
3.2.4 1,705,997 6/6/2021
3.2.3 514,308 4/2/2021
3.2.2 186,924 3/2/2021
3.2.1 322,168 1/7/2021
3.2.0 450,178 10/15/2020
3.1.9 419,748 9/17/2020
3.1.8 1,580 9/17/2020
3.1.7 3,545 9/15/2020
3.1.6 125,685 8/27/2020
3.1.5 78,696 8/24/2020
3.1.4 32,500 8/15/2020
3.1.3 300,851 6/22/2020
3.1.2 106,806 5/29/2020
3.1.1 16,402 5/26/2020
3.1.0 56,641 4/21/2020
3.0.3 10,027 4/19/2020
3.0.2 108,884 4/16/2020
3.0.1 53,199 3/26/2020
3.0.0 4,293 3/23/2020
2.1.2 105,107 3/9/2020
2.1.0 13,711 2/21/2020