GraphQL.Client.Serializer.Newtonsoft 6.0.4
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());
[!NOTE] GraphQLHttpClient is meant to be used as a single longlived instance per endpoint (i.e. register as singleton in a DI system), which should be reused for multiple requests.
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="
}
};
[!WARNING] 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 aList<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;
[!IMPORTANT] 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 propertyperson
containing aPersonType
object (like theResponseType
modelled above).
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();
Syntax Highlighting for GraphQL strings in IDEs
.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.
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:
Showing the top 20 packages that depend on GraphQL.Client.Serializer.Newtonsoft.
Packages | Downloads |
---|---|
GraphQL.Client
A GraphQL Client for .NET Standard
|
13 |
GraphQL.Client
A GraphQL Client for .NET Standard
|
15 |
.NET Standard 2.0
- GraphQL.Client.Abstractions.Websocket (>= 6.0.4)
- Newtonsoft.Json (>= 13.0.3)
Version | Downloads | Last updated |
---|---|---|
6.1.0 | 12 | 05/24/2024 |
6.0.5 | 8 | 05/25/2024 |
6.0.4 | 8 | 05/25/2024 |
6.0.3 | 7 | 06/03/2024 |
6.0.2 | 9 | 11/29/2023 |
6.0.1 | 9 | 10/08/2023 |
6.0.0 | 13 | 06/27/2023 |
5.1.1 | 11 | 04/08/2023 |
5.1.0 | 12 | 01/19/2023 |
5.0.2 | 9 | 01/19/2023 |
5.0.1 | 10 | 01/19/2023 |
5.0.0 | 14 | 01/19/2023 |
4.0.2 | 15 | 01/19/2023 |
4.0.1 | 11 | 01/19/2023 |
4.0.0 | 15 | 01/19/2023 |
3.2.4 | 12 | 01/19/2023 |
3.2.3 | 13 | 01/19/2023 |
3.2.2 | 10 | 01/19/2023 |
3.2.1 | 12 | 01/19/2023 |
3.2.0 | 10 | 01/19/2023 |
3.1.9 | 12 | 01/19/2023 |
3.1.8 | 9 | 01/19/2023 |
3.1.7 | 12 | 01/19/2023 |
3.1.6 | 13 | 01/19/2023 |
3.1.5 | 15 | 01/19/2023 |
3.1.4 | 11 | 01/19/2023 |
3.1.3 | 12 | 01/19/2023 |
3.1.2 | 11 | 01/19/2023 |
3.1.1 | 12 | 01/19/2023 |
3.1.0 | 12 | 01/19/2023 |
3.0.3 | 11 | 01/19/2023 |
3.0.2 | 12 | 01/19/2023 |
3.0.1 | 10 | 01/19/2023 |
3.0.0 | 11 | 01/19/2023 |
2.1.2 | 10 | 01/19/2023 |
2.1.0 | 14 | 01/19/2023 |