GraphQL 5.3.2

GraphQL for .NET

Join the chat at https://gitter.im/graphql-dotnet/graphql-dotnet

Test code Build artifacts Publish code CodeQL analysis codecov

Backers on Open Collective Sponsors on Open Collective

Activity Activity Activity

Size

This is an implementation of Facebook's GraphQL in .NET.

Now the specification is being developed by the GraphQL Foundation.

This project uses a lexer/parser originally written by Marek Magdziak and released with a MIT license. Thank you Marek!

Provides the following packages:

Package Downloads NuGet Latest
GraphQL Nuget Nuget
GraphQL.SystemTextJson Nuget Nuget
GraphQL.NewtonsoftJson Nuget Nuget
GraphQL.MemoryCache Nuget Nuget
GraphQL.DataLoader Nuget Nuget
GraphQL.MicrosoftDI Nuget Nuget

You can get all preview versions from GitHub Packages. Note that GitHub requires authentication to consume the feed. See here.

Documentation

  1. http://graphql-dotnet.github.io - documentation site that is built from the docs folder in the master branch.
  2. https://graphql.org/learn - learn about GraphQL, how it works, and how to use it.

Debugging

All packages generated from this repository come with embedded pdb and support Source Link. If you are having difficulty understanding how the code works or have encountered an error, then it is just enough to enable Source Link in your IDE settings. Then you can debug GraphQL.NET source code as if it were part of your project.

Installation

1. GraphQL.NET engine

This is the main package, the heart of the repository in which you can find all the necessary classes for GraphQL request processing.

> dotnet add package GraphQL

2. Serialization

For serialized results, you'll need an IGraphQLSerializer implementation. We provide several serializers (or you can bring your own).

> dotnet add package GraphQL.SystemTextJson
> dotnet add package GraphQL.NewtonsoftJson

Note: You can use GraphQL.NewtonsoftJson with .NET Core 3+, just be aware it lacks async writing capabilities so writing to an ASP.NET Core 3.0 HttpResponse.Body will require you to set AllowSynchronousIO to true as per this announcement; which isn't recommended.

3. Document Caching

For caching of parsed GraphQL documents you'll need an IDocumentCache implementation. We provide in-memory implementation on top of Microsoft.Extensions.Caching.Memory package.

> dotnet add package GraphQL.MemoryCache

For more information see Document Caching.

4. DataLoader

DataLoader is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.

> dotnet add package GraphQL.DataLoader

For more information see DataLoader.

Note: Prior to version 4, the contents of this package was part of the main GraphQL.NET package.

5. Subscriptions

DocumentExecuter can handle subscriptions as well as queries and mutations. For more information see Subscriptions.

6. Advanced Dependency Injection

Also we provide some extra classes for advanced dependency injection usage on top of Microsoft.Extensions.DependencyInjection.Abstractions package.

> dotnet add package GraphQL.MicrosoftDI

For more information see Thread safety with scoped services.

Examples

https://github.com/graphql-dotnet/examples

You can also try an example of GraphQL demo server inside this repo - GraphQL.Harness. It supports the popular IDEs for managing GraphQL requests and exploring GraphQL schema:

Training

Upgrade Guides

You can see the changes in public APIs using fuget.org.

Basic Usage

Define your schema with a top level query object then execute that query.

Fully-featured examples can be found here.

Hello World

using System;
using System.Threading.Tasks;
using GraphQL;
using GraphQL.Types;
using GraphQL.SystemTextJson; // First add PackageReference to GraphQL.SystemTextJson

var schema = Schema.For(@"
  type Query {
    hello: String
  }
");

var root = new { Hello = "Hello World!" };
var json = await schema.ExecuteAsync(_ =>
{
  _.Query = "{ hello }";
  _.Root = root;
});

Console.WriteLine(json);

Schema First Approach

This example uses the GraphQL schema language. See the documentation for more examples and information.

public class Droid
{
  public string Id { get; set; }
  public string Name { get; set; }
}

public class Query
{
  [GraphQLMetadata("droid")]
  public Droid GetDroid()
  {
    return new Droid { Id = "123", Name = "R2-D2" };
  }
}

var schema = Schema.For(@"
  type Droid {
    id: ID
    name: String
  }

  type Query {
    droid: Droid
  }
", _ => {
    _.Types.Include<Query>();
});

var json = await schema.ExecuteAsync(_ =>
{
  _.Query = "{ droid { id name } }";
});

Parameters

public class Droid
{
  public string Id { get; set; }
  public string Name { get; set; }
}

public class Query
{
  private List<Droid> _droids = new List<Droid>
  {
    new Droid { Id = "123", Name = "R2-D2" }
  };

  [GraphQLMetadata("droid")]
  public Droid GetDroid(string id)
  {
    return _droids.FirstOrDefault(x => x.Id == id);
  }
}

var schema = Schema.For(@"
  type Droid {
    id: ID
    name: String
  }

  type Query {
    droid(id: ID): Droid
  }
", _ => {
    _.Types.Include<Query>();
});

var json = await schema.ExecuteAsync(_ =>
{
  _.Query = $"{{ droid(id: \"123\") {{ id name }} }}";
});

Roadmap

Grammar / AST

Operation Execution

  • Scalars
  • Objects
  • Lists of objects/interfaces
  • Interfaces
  • Unions
  • Arguments
  • Variables
  • Fragments
  • Directives
    • Include
    • Skip
    • Custom
  • Enumerations
  • Input Objects
  • Mutations
  • Subscriptions
  • Async execution

Validation

  • Arguments of correct type
  • Default values of correct type
  • Fields on correct type
  • Fragments on composite types
  • Known argument names
  • Known directives
  • Known fragment names
  • Known type names
  • Lone anonymous operations
  • No fragment cycles
  • No undefined variables
  • No unused fragments
  • No unused variables
  • Overlapping fields can be merged
  • Possible fragment spreads
  • Provide non-null arguments
  • Scalar leafs
  • Unique argument names
  • Unique directives per location
  • Unique fragment names
  • Unique input field names
  • Unique operation names
  • Unique variable names
  • Variables are input types
  • Variables in allowed position
  • Single root field

Schema Introspection

GraphQL.NET supports introspection schema from October 2021 spec with some additional experimental introspection extensions.

Publishing NuGet packages

The package publishing process is automated with GitHub Actions.

After your PR is merged into master or develop, preview packages are published to GitHub Packages.

Stable versions of packages are published to NuGet when a release is created.

Contributors

This project exists thanks to all the people who contribute.

PRs are welcome! Looking for something to work on? The list of open issues is a great place to start. You can help the project simply respond to some of the asked questions.

The default branch is master. It is designed for non-breaking changes, that is to publish versions 5.x.x. If you have a PR with some breaking changes, then please target it to the develop branch that tracks changes for v6.0.0.

Backers

Thank you to all our backers! 🙏 Become a backer.

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. Become a sponsor.

Showing the top 20 packages that depend on GraphQL.

Packages Downloads
GraphQL.DataLoader
GraphQL DataLoader implementation
62
GraphQL.DataLoader
GraphQL DataLoader implementation
61
GraphQL.DataLoader
GraphQL DataLoader implementation
59
GraphQL.NewtonsoftJson
JSON.NET serializer for GraphQL.NET
58
GraphQL.DataLoader
GraphQL DataLoader implementation
58
GraphQL.DataLoader
GraphQL DataLoader implementation
57
GraphQL.NewtonsoftJson
JSON.NET serializer for GraphQL.NET
56
GraphQL.SystemReactive
GraphQL subscriptions implementation on top of System.Reactive
56
GraphQL.DataLoader
GraphQL DataLoader implementation
56
GraphQL.NewtonsoftJson
JSON.NET serializer for GraphQL.NET
55
GraphQL.DataLoader
GraphQL DataLoader implementation
55
GraphQL.SystemTextJson
System.Text.Json serializer for GraphQL.NET
54
GraphQL.DataLoader
GraphQL DataLoader implementation
54
GraphQL.NewtonsoftJson
JSON.NET serializer for GraphQL.NET
53

Version Downloads Last updated
8.8.3 2 1/6/2026
8.8.2 1 12/24/2025
8.8.1 1 12/24/2025
8.8.0 5 11/18/2025
8.7.0 18 10/25/2025
8.6.0 17 9/24/2025
8.5.0 42 4/15/2025
8.4.1 31 3/3/2025
8.4.0 35 2/25/2025
8.3.1 32 2/20/2025
8.3.0 34 1/22/2025
8.2.1 48 11/2/2024
8.2.0 41 10/29/2024
8.1.0 39 9/19/2024
8.0.2 42 8/27/2024
8.0.1 31 8/27/2024
8.0.0 33 8/23/2024
7.9.0 39 8/18/2024
7.8.0 54 3/9/2024
7.7.2 43 3/9/2024
7.7.1 45 3/9/2024
7.7.0 47 3/9/2024
7.6.1 53 3/9/2024
7.6.0 46 3/9/2024
7.5.0 42 3/9/2024
7.4.1 43 3/9/2024
7.4.0 43 3/9/2024
7.3.1 34 3/9/2024
7.3.0 47 3/9/2024
7.2.2 50 3/9/2024
7.2.1 40 3/9/2024
7.2.0 37 3/9/2024
7.1.1 41 3/9/2024
7.1.0 52 3/9/2024
7.0.2 41 3/9/2024
7.0.1 43 3/9/2024
7.0.0 39 3/9/2024
5.4.0 41 3/9/2024
5.3.3 54 3/9/2024
5.3.2 41 3/9/2024
5.3.1 45 3/9/2024
5.3.0 41 3/9/2024
5.2.0 43 3/9/2024
5.1.1 45 3/9/2024
5.1.0 44 3/9/2024
5.0.0 49 3/9/2024
4.8.0 43 3/9/2024
4.7.1 43 3/9/2024
4.7.0 43 3/9/2024
4.6.1 39 3/9/2024
4.6.0 45 3/9/2024
4.5.0 48 3/9/2024
4.4.0 40 3/9/2024
4.3.0 45 3/9/2024
4.2.0 44 3/9/2024
4.1.0 40 3/9/2024
4.0.2 38 3/9/2024
4.0.1 42 3/9/2024
4.0.0 44 3/9/2024
3.3.2 45 3/9/2024
3.3.1 37 3/9/2024
3.3.0 49 3/9/2024
3.2.0 40 3/9/2024
3.1.6 41 3/9/2024
3.1.5 48 3/9/2024
3.1.4 41 3/9/2024
3.1.3 54 4/12/2022
3.1.2 40 3/9/2024
3.1.1 44 3/9/2024
3.1.0 36 3/9/2024
3.0.0.2026 45 3/9/2024
3.0.0 46 3/9/2024
3.0.0-preview-1719 37 3/6/2024
3.0.0-preview-1648 38 3/6/2024
3.0.0-preview-1490 47 3/6/2024
3.0.0-preview-1354 46 3/6/2024
3.0.0-preview-1352 38 3/6/2024
3.0.0-preview-1271 45 3/6/2024
3.0.0-preview-1268 41 3/6/2024
3.0.0-preview-1264 46 3/6/2024
3.0.0-preview-1211 47 3/6/2024
3.0.0-preview-1194 39 3/6/2024
3.0.0-preview-1175 39 3/6/2024
3.0.0-preview-1141 40 3/6/2024
3.0.0-preview-1107 41 3/6/2024
2.4.0 41 3/9/2024
2.3.0 51 3/9/2024
2.2.0 43 3/9/2024
2.1.0 36 3/9/2024
2.0.0 40 3/9/2024
2.0.0-preview-997 47 3/6/2024
2.0.0-preview-1002 35 3/6/2024
2.0.0-alpha-978 41 3/9/2024
2.0.0-alpha-952 48 3/9/2024
2.0.0-alpha-951 46 3/9/2024
2.0.0-alpha-947 37 3/9/2024
2.0.0-alpha-938 39 3/9/2024
2.0.0-alpha-937 46 3/9/2024
2.0.0-alpha-931 41 3/9/2024
2.0.0-alpha-927 41 3/9/2024
2.0.0-alpha-923 43 3/9/2024
2.0.0-alpha-912 40 3/9/2024
2.0.0-alpha-899 44 3/9/2024
2.0.0-alpha-887 39 3/9/2024
2.0.0-alpha-870 41 3/9/2024
2.0.0-alpha-868 52 3/9/2024
2.0.0-alpha-863 48 3/9/2024
2.0.0-alpha-859 42 3/9/2024
2.0.0-alpha-851 41 3/9/2024
2.0.0-alpha-839 49 3/9/2024
2.0.0-alpha-820 40 3/9/2024
2.0.0-alpha-817 46 3/9/2024
2.0.0-alpha-811 46 3/9/2024
2.0.0-alpha-805 38 3/9/2024
2.0.0-alpha-802 52 3/9/2024
2.0.0-alpha-797 42 3/9/2024
2.0.0-alpha-793 39 3/9/2024
2.0.0-alpha-783 43 3/9/2024
0.17.3 42 3/9/2024
0.17.2 43 3/9/2024
0.17.1 46 3/9/2024
0.17.0 41 3/9/2024
0.16.1 54 3/9/2024
0.16.0 44 3/9/2024
0.16.0-alpha-697 38 3/9/2024
0.15.1.678 38 3/9/2024
0.15.0.671 39 3/9/2024
0.14.7.667 41 3/9/2024
0.14.6.657 41 3/9/2024
0.14.5.654 45 3/9/2024
0.14.4.649 42 3/9/2024
0.14.3.646 34 3/9/2024
0.14.1.638 38 3/9/2024
0.14.0.633 43 3/9/2024
0.13.1.601 46 3/9/2024
0.13.0.562 42 3/9/2024
0.12.3.556 44 3/9/2024
0.12.2-alpha-550 36 2/26/2024
0.12.1-alpha-545 38 3/9/2024
0.12.0-alpha-538 42 3/9/2024
0.12.0-alpha-536 41 3/9/2024
0.12.0-alpha-511 38 3/9/2024
0.11.0.493 40 3/9/2024
0.10.3.478 45 3/9/2024
0.10.2.436 42 3/9/2024
0.10.1.349 38 3/9/2024
0.10.0.325 43 3/9/2024
0.10.0.323 36 3/9/2024
0.9.3 44 3/9/2024
0.9.2 41 3/9/2024
0.9.1 45 3/9/2024
0.9.0 38 3/9/2024
0.8.2 40 3/9/2024
0.8.1 41 3/9/2024
0.8.0 43 3/9/2024
0.8.0-alpha 40 3/9/2024
0.7.1 41 3/9/2024
0.7.0 45 3/9/2024
0.6.6 44 3/9/2024
0.6.5 42 3/9/2024
0.6.4 43 3/9/2024
0.6.3 38 3/9/2024
0.6.2 41 3/9/2024
0.6.1 46 3/9/2024
0.6.0 41 3/9/2024
0.5.1 37 3/9/2024
0.5.0 43 3/9/2024
0.4.1 36 3/9/2024
0.4.0 44 3/9/2024
0.3.0 37 3/9/2024
0.2.0 36 3/9/2024
0.1.1 38 3/9/2024
0.1.0 40 3/9/2024