-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathRootQuery.cs
More file actions
32 lines (27 loc) · 787 Bytes
/
RootQuery.cs
File metadata and controls
32 lines (27 loc) · 787 Bytes
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
class RootQuery
{
#region rootQuery
public class Query :
QueryGraphType<MyDbContext>
{
public Query(IEfGraphQLService<MyDbContext> graphQlService) :
base(graphQlService)
{
AddSingleField(
resolve: _ => _.DbContext.Companies,
name: "company");
AddQueryField(
name: "companies",
resolve: _ => _.DbContext.Companies);
}
}
#endregion
public class MyDbContext :
DbContext
{
public IQueryable<Company> Companies { get; set; } = null!;
}
public class Company;
class CompanyGraph(IEfGraphQLService<MyDbContext> efGraphQlService) :
EfObjectGraphType<MyDbContext, Company>(efGraphQlService);
}