GraphQL.Client.Serializer.SystemTextJson 5.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package GraphQL.Client.Serializer.SystemTextJson --version 5.0.2
NuGet\Install-Package GraphQL.Client.Serializer.SystemTextJson -Version 5.0.2
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.SystemTextJson" Version="5.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GraphQL.Client.Serializer.SystemTextJson --version 5.0.2
#r "nuget: GraphQL.Client.Serializer.SystemTextJson, 5.0.2"
#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.SystemTextJson as a Cake Addin
#addin nuget:?package=GraphQL.Client.Serializer.SystemTextJson&version=5.0.2

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

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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (18)

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

Package Downloads
Queryout.SmartGateway.Sdk

Package Description

Queryout.SmartAuth.Sdk

Package Description

Queryout.SmartLog.Sdk.GraphQl

Package Description

BizDoc.Core.Monday

Monday for BizDoc

PigTracks.Sensors

Client library to send data to PigTracks Sensors.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on GraphQL.Client.Serializer.SystemTextJson:

Repository Stars
getsentry/sentry-dotnet
Sentry SDK for .NET
fmbot-discord/fmbot
.fmbot is a social Discord bot that provides music statistics for you and your friends.
Version Downloads Last updated
6.0.3 3,147 3/20/2024
6.0.2 182,479 11/23/2023
6.0.1 158,228 9/29/2023
6.0.0 413,097 4/13/2023
5.1.1 325,928 1/23/2023
5.1.0 681,941 8/1/2022
5.0.2 183,882 7/19/2022
5.0.1 7,694 7/18/2022
5.0.0 2,675 7/15/2022
4.0.2 1,478,053 12/16/2021
4.0.1 182,743 10/29/2021
4.0.0 74,155 10/27/2021
3.2.4 340,701 6/6/2021
3.2.3 679,048 4/2/2021
3.2.2 33,463 3/2/2021
3.2.1 67,321 1/7/2021
3.2.0 119,635 10/15/2020
3.1.9 470,778 9/17/2020
3.1.8 508 9/17/2020
3.1.7 642 9/15/2020
3.1.6 9,968 8/27/2020
3.1.5 78,801 8/24/2020
3.1.4 4,489 8/15/2020
3.1.3 77,702 6/22/2020
3.1.2 4,848 5/29/2020
3.1.1 927 5/26/2020
3.1.0 234,139 4/21/2020
3.0.3 759 4/19/2020
3.0.2 542 4/16/2020
3.0.1 5,231 3/26/2020
3.0.0 565 3/23/2020
2.1.2 7,787 3/9/2020
2.1.0 906 2/21/2020