-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathResolveDbContextQuery.cs
42 lines (36 loc) · 1.03 KB
/
ResolveDbContextQuery.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using GraphQL.Types;
class ResolveDbContextQuery
{
#region QueryResolveDbContext
public class Query :
QueryGraphType<MyDbContext>
{
public Query(IEfGraphQLService<MyDbContext> graphQlService) :
base(graphQlService) =>
Field<ListGraphType<CompanyGraph>>("oldCompanies")
.Resolve(context =>
{
// uses the base QueryGraphType to resolve the db context
var dbContext = ResolveDbContext(context);
return dbContext.Companies.Where(_ => _.Age > 10);
});
}
#endregion
public class MyDbContext :
DbContext
{
public IQueryable<Company> Companies { get; set; } = null!;
}
public class Company
{
public int Age { get; set; }
}
class CompanyGraph:
EfObjectGraphType<MyDbContext,Company>
{
public CompanyGraph(IEfGraphQLService<MyDbContext> efGraphQlService) :
base(efGraphQlService)
{
}
}
}