EntityGraphQL 4.3.0

.NET Standard 2.1
dotnet add package EntityGraphQL --version 4.3.0
NuGet\Install-Package EntityGraphQL -Version 4.3.0
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="EntityGraphQL" Version="4.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EntityGraphQL --version 4.3.0
#r "nuget: EntityGraphQL, 4.3.0"
#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 EntityGraphQL as a Cake Addin
#addin nuget:?package=EntityGraphQL&version=4.3.0

// Install EntityGraphQL as a Cake Tool
#tool nuget:?package=EntityGraphQL&version=4.3.0

Entity GraphQL

A GraphQL library for .NET Core

Build Nuget

Jump into the https://entitygraphql.github.io/ for documentation and to get started.

Entity GraphQL is a .NET Core (netstandard 2.1) library that allows you to easily build a GraphQL API on top of your data with the extensibility to bring multiple data sources together in the single GraphQL schema.

It can also be used to execute simple LINQ-style expressions at runtime against a given object which provides powerful runtime configuration.

Please explore, give feedback or join the development.

If you're looking for a dotnet library to generate code to query an API from a GraphQL schema see https://github.com/lukemurray/DotNetGraphQLQueryGen

Installation

Via Nuget

Nuget

Quick Start with Entity Framework

Note: There is no dependency on EF. Queries are compiled to IQueryable or IEnumberable linq expressions. EF is not a requirement - any ORM working with LinqProvider or an in-memory object will work - although EF well is tested.

1. Define your data context (in this example an EF context)

public class DemoContext : DbContext {
  public DemoContext(DbContextOptions options) : base(options)
  {
  }

  protected override void OnModelCreating(ModelBuilder builder) {
    // Set up your relations
  }

  public DbSet<Property> Properties { get; set; }
  public DbSet<PropertyType> PropertyTypes { get; set; }
  public DbSet<Location> Locations { get; set; }
}

public class Property {
  public uint Id { get; set; }
  public string Name { get; set; }
  public PropertyType Type { get; set; }
  public Location Location { get; set; }
}

public class PropertyType {
  public uint Id { get; set; }
  public string Name { get; set; }
  public decimal Premium { get; set; }
}

public class Location {
  public uint Id { get; set; }
  public string Name { get; set; }
}

2. Create a route

Here is an example for a ASP.NET. You will also need to install EntityGraphQL.AspNet to use MapGraphQL. You can also build you own endpoint, see docs.

Nuget

public class Startup {
  public void ConfigureServices(IServiceCollection services)
  {
      services.AddDbContext<DemoContext>(opt => opt.UseInMemoryDatabase());
      // This registers a SchemaProvider<DemoContext>
      services.AddGraphQLSchema<DemoContext>();
  }

  public void Configure(IApplicationBuilder app, DemoContext db)
  {
      app.UseRouting();
      app.UseEndpoints(endpoints =>
      {
          // default to /graphql endpoint
          endpoints.MapGraphQL<DemoContext>();
      });
  }
}

This sets up 1 end point:

  • POST at /graphql where the body of the post is a GraphQL query
  • You can authorize that route how you would any ASP.NET route. See Authorization below for details on having parts of the schema requiring Authorization/Claims

Note - As of version 1.1+ the EntityGraphQL.AspNet extension helper uses System.Text.Json. Previous versions used JSON.NET.

3. Build awesome applications

You can now make a request to your API. For example

  POST localhost:5000/graphql
  {
    properties { id name }
  }

Will return the following result.

{
  "data": {
    "properties": [
      {
        "id": 11,
        "name": "My Beach Pad"
      },
      {
        "id": 12,
        "name": "My Other Beach Pad"
      }
    ]
  }
}

Maybe you only want a specific property

  {
    property(id: 11) {
      id name
    }
  }

Will return the following result.

{
  "data": {
    "property": {
      "id": 11,
      "name": "My Beach Pad"
    }
  }
}

If you need a deeper graph or relations, just ask

  {
    properties {
      id
      name
      location {
        name
      }
      type {
        premium
      }
    }
  }

Will return the following result.

{
  "data": {
    "properties": [
      {
        "id": 11,
        "name": "My Beach Pad",
        "location": {
          "name": "Greece"
        },
        "type": {
          "premium": 1.2
        }
      },
      {
        "id": 12,
        "name": "My Other Beach Pad",
        "location": {
          "name": "Spain"
        },
        "type": {
          "premium": 1.25
        }
      }
    ]
  }
}

Visit documentation for more information.

Using expressions else where (EQL)

Lets say you have a screen in your application listing properties that can be configured per customer or user to only show exactly what they are interested in. Instead of having a bunch of checkboxes and complex radio buttons etc. you can allow a simple EQL statement to configure the results shown. Or use those UI components to build the query.

  // This might be a configured EQL statement for filtering the results. It has a context of Property
  (type.id = 2) or (type.id = 3) and type.name = "Farm"

This would compile to (Property p) => (p.Type.Id == 2 || p.Type.Id == 3) && p.Type.Name == "Farm";

This can then be used in various Linq functions either in memory or against an ORM.

// we create a schema provider to compile the statement against our Property type
var schemaProvider = SchemaBuilder.FromObject<Property>();
var compiledResult = EntityQueryCompiler.Compile(myConfigurationEqlStatement, schemaProvider);
// you get your list of Properties from you DB
var thingsToShow = myProperties.Where(compiledResult.LambdaExpression);

Another example is you want a customised calculated field. You can execute a compiled result passing in an instance of the context type.

// You'd take this from some configuration
var eql = @"if location.name = ""Mars"" then (cost + 5) * type.premium else (cost * type.premium) / 3"
var compiledResult = EntityQueryCompiler.Compile(eql, schemaProvider);
var theRealPrice = compiledResult.Execute<decimal>(myPropertyInstance);

Versioning

We do our best to follow Semantic Versioning:

Given a version number MAJOR.MINOR.PATCH, an increment in:

  • MAJOR version is when we make incompatible API changes,
  • MINOR version is when we add functionality in a backwards compatible manner, and
  • PATCH version is when we make backwards compatible bug fixes.

Contribute & Join the Development

Please do. Pull requests are very welcome. See the open issues for bugs or features that would be useful.

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 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.1
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen 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 (3)

Showing the top 3 NuGet packages that depend on EntityGraphQL:

Package Downloads
EntityGraphQL.AspNet

Contains ASP.NET extensions and middleware for EntityGraphQL

Zen.Web.GraphQL

Package Description

SiteCauldron.GenericAPI

SiteCauldron Generic API utilities for Web MVC applications. Provides a few controllers to cover most use cases, so that you mostly won't have to program a CRUD again.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.3.0 71 3/14/2023
4.2.1 1,277 12/22/2022
4.2.0 3,860 11/16/2022
4.1.2 1,329 10/20/2022
4.1.1 628 10/18/2022
4.1.0 584 10/13/2022
4.0.1 913 10/5/2022
4.0.0 1,647 9/10/2022
4.0.0-beta2 540 9/8/2022
4.0.0-beta1 126 9/6/2022
3.0.5 880 8/16/2022
3.0.4 497 8/5/2022
3.0.3 1,036 8/4/2022
3.0.2 694 8/1/2022
3.0.1 469 8/1/2022
3.0.0 608 7/31/2022
2.3.2 763 7/18/2022
2.3.1 911 7/14/2022
2.3.0 808 7/4/2022
2.2.0 2,580 7/1/2022
2.1.5 1,441 6/13/2022
2.1.4 504 6/11/2022
2.1.3 1,011 6/6/2022
2.1.2 590 5/23/2022
2.1.1 789 5/18/2022
2.1.0 499 5/17/2022
2.0.3 508 5/9/2022
2.0.2 619 5/6/2022
2.0.1 494 5/5/2022
2.0.0 560 4/29/2022
2.0.0-beta7 89 4/27/2022
2.0.0-beta6 92 4/25/2022
2.0.0-beta5 1,514 4/14/2022
2.0.0-beta4 124 4/13/2022
2.0.0-beta3 89 4/13/2022
2.0.0-beta2 132 4/11/2022
2.0.0-beta1 5,053 4/7/2022
1.2.0 10,488 2/15/2022
1.1.2 576 2/11/2022
1.1.1 610 2/9/2022
1.1.0 1,546 1/13/2022
1.1.0-beta2 100 1/8/2022
1.1.0-beta1 101 1/8/2022
1.0.3 237 12/28/2021
1.0.2 7,257 10/20/2021
1.0.1 5,132 9/30/2021
1.0.0 367 9/28/2021
1.0.0-beta2 217 9/15/2021
1.0.0-beta1 166 9/13/2021
0.70.0 3,024 8/30/2021
0.69.0 755 8/18/2021
0.69.0-beta7 206 8/12/2021
0.69.0-beta6 211 8/10/2021
0.69.0-beta5 156 8/9/2021
0.69.0-beta4 184 8/6/2021
0.69.0-beta3 186 8/5/2021
0.69.0-beta2 857 7/24/2021
0.69.0-beta1 271 7/16/2021
0.68.1 1,336 4/5/2021
0.66.1 9,787 10/5/2020
0.66.0 610 9/22/2020
0.65.0 416 9/17/2020
0.64.0 997 9/1/2020
0.63.0 1,120 6/10/2020
0.63.0-beta3 1,284 6/4/2020
0.63.0-beta2 291 6/4/2020
0.63.0-beta1 284 6/3/2020
0.62.0 550 5/27/2020
0.61.0 471 5/14/2020
0.60.0 458 5/9/2020
0.60.0-beta3 612 5/4/2020
0.60.0-beta1 523 4/22/2020
0.50.0 2,688 4/1/2020
0.50.0-beta1 331 3/24/2020
0.40.0 616 3/19/2020
0.32.1 855 3/3/2020
0.32.0 1,057 2/14/2020
0.31.0 821 2/6/2020
0.30.0 1,626 1/23/2020
0.29.0 471 1/21/2020
0.28.1 822 1/8/2020
0.28.0 554 1/8/2020
0.27.2 460 1/8/2020
0.27.1 457 1/7/2020
0.27.0 482 1/6/2020
0.26.0 4,306 1/2/2020
0.25.0 1,124 11/19/2019
0.24.0 534 11/12/2019
0.23.3 539 11/4/2019
0.23.2 512 11/2/2019
0.23.1 516 10/31/2019
0.23.0 488 10/30/2019
0.22.0 491 10/30/2019
0.21.0 1,795 9/3/2019
0.20.1 520 8/28/2019
0.20.0 503 8/28/2019
0.19.1 629 8/26/2019
0.19.0 511 8/25/2019
0.18.4 674 8/19/2019
0.18.3 661 7/30/2019
0.18.2 746 7/26/2019
0.18.1 616 7/18/2019
0.18.0 592 7/17/2019
0.17.0 758 7/8/2019
0.16.2 1,044 6/1/2019
0.16.1 610 5/27/2019
0.16.0 687 5/21/2019
0.15.8 754 4/11/2019
0.15.7 628 4/11/2019
0.15.6 9,773 3/15/2019
0.15.5 600 3/14/2019
0.15.4 635 3/8/2019
0.15.3 653 3/6/2019
0.15.2 683 2/22/2019
0.15.1 934 2/14/2019
0.15.0 780 2/5/2019
0.14.4 776 1/29/2019
0.14.3 732 1/25/2019
0.14.2 699 1/22/2019
0.14.1 691 1/21/2019
0.14.0 747 1/14/2019
0.13.1 713 1/9/2019
0.13.0 724 1/3/2019
0.12.1 797 12/18/2018
0.12.0 689 12/13/2018
0.11.0 757 11/13/2018