GraphQL.EntityFrameworkCore.Helpers
0.2.2
See the version list below for details.
dotnet add package GraphQL.EntityFrameworkCore.Helpers --version 0.2.2
NuGet\Install-Package GraphQL.EntityFrameworkCore.Helpers -Version 0.2.2
<PackageReference Include="GraphQL.EntityFrameworkCore.Helpers" Version="0.2.2" />
paket add GraphQL.EntityFrameworkCore.Helpers --version 0.2.2
#r "nuget: GraphQL.EntityFrameworkCore.Helpers, 0.2.2"
// Install GraphQL.EntityFrameworkCore.Helpers as a Cake Addin #addin nuget:?package=GraphQL.EntityFrameworkCore.Helpers&version=0.2.2 // Install GraphQL.EntityFrameworkCore.Helpers as a Cake Tool #tool nuget:?package=GraphQL.EntityFrameworkCore.Helpers&version=0.2.2
GraphQL Helpers for EF Core - Connections, Selection from Request and More
Helpers to add bidirectional cursor based paginaton to your endpoints with the IQueryable
extension method ToConnection
. The method expects a request that implements IConnectionInput
as input. Parameters is added to the ConnectionBuilder
using the extension method Paged(defaultPageSize)
.
The Select(IResolveFieldContext context)
extension methods helps you to avoid overfetching data by only selecting the fields requested. Foreign key fields are included by default as the value might be used for data loaded fields (requires DbContext.IModel
). ToConnection
is using this method per default.
With the Filter(context)
extension method you can filter a list of items based on a search string. What columns should be filterable is determined by the FilterableAttribute
. The filter parameter is applied Filterable
extension.
Getting Started
dotnet add package GraphQL.EntityFrameworkCore.Helpers
Examples
Connection
Bidirectional cursor based pagination with support for ordering, filtering and selecting based on what is requested.
With the parameter orderBy
(array of strings, i.e [ "name", "id" ]
) you can specify in the client what order you want the items in. The order will be ascending by default, you can change it to descending by setting the parameter isAsc
to false
.
Connection<DroidGraphType>()
.Name("Droids")
.Paged()
.ResolveAsync(async context =>
{
var request = new ConnectionInput();
request.SetConnectionInput(context);
return await dbContext.Droids
.ToConnection(request, dbContext.Model); // IModel is required for Select from Request
});
Select from Request
FieldAsync<ListGraphType<HumanGraphType>>(
"Humans",
resolve: async context => await dbContext.Humans.Select(context, dbContext.Model).ToListAsync());
Filter
Add FilterableAttribute
columns that should be filterable.
public class Human
{
public Guid Id { get; set; }
[Filterable]
public string Name { get; set; }
}
Add the argument to the FieldBuilder
using the extension method Filterable()
and filter the list with the IQueryable
extension method Filter(context)
.
Field<ListGraphType<HumanGraphType>>()
.Name("Humans")
.Filterable()
.ResolveAsync(async context => await dbContext.Humans
.Filter(context)
.Select(context, dbContext.Model)
.ToListAsync());
Product | Versions 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 was computed. |
.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. |
-
.NETStandard 2.0
- GraphQL (>= 3.0.0-preview-1490)
- Microsoft.EntityFrameworkCore (>= 3.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.6 | 889 | 11/9/2021 |
1.1.5 | 317 | 11/8/2021 |
1.1.4 | 506 | 9/19/2021 |
1.1.3 | 793 | 6/14/2021 |
1.1.2 | 392 | 5/27/2021 |
1.1.0 | 452 | 3/20/2021 |
1.0.1 | 357 | 3/16/2021 |
1.0.0 | 370 | 2/28/2021 |
0.6.0 | 378 | 1/3/2021 |
0.5.2 | 477 | 10/4/2020 |
0.5.1 | 518 | 9/13/2020 |
0.5.0 | 475 | 9/12/2020 |
0.4.0 | 455 | 8/19/2020 |
0.3.0 | 500 | 8/11/2020 |
0.2.5 | 527 | 5/2/2020 |
0.2.4 | 537 | 5/2/2020 |
0.2.3 | 581 | 3/29/2020 |
0.2.2 | 514 | 3/29/2020 |
0.2.1 | 511 | 3/25/2020 |
0.2.0 | 491 | 3/25/2020 |
0.1.0 | 506 | 3/24/2020 |