0

我们在现有的应用程序数据库之上有一个 GraphQL dotnet 实现。

<PackageReference Include="GraphQL" Version="3.3.2" />
<PackageReference Include="GraphQL.SystemTextJson" Version="3.3.2" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="4.4.1" />
<PackageReference Include="GraphQL.Server.Transports.WebSockets" Version="4.4.1" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore.SystemTextJson" Version="4.4.1" />
<PackageReference Include="GraphQL.Server.Ui.Playground" Version="4.4.1" />
<PackageReference Include="GraphQL.Server.Authorization.AspNetCore" Version="4.4.1" />

我们有一个相当交织的数据结构,所以当从我们的一些顶级字段查询时,包括它们的一些子字段,我们可能会加入大量的表。但是,并非每个查询都需要所有这些连接。

我希望能够手动解析 Query ObjectGraphType 中的 context.Arguments,当我解决它以消除未查询特定子字段时的连接时。

一个非常简单的高级版本如下:

Field<ListGraphType<OrganisationType>>(
"organisations",
resolve: context =>
{
    var retVal = database.Organisations();

    //Are we joining on employers?
    if(context.SubFields.ContainsKey("employers"))
    {
        retVal.Include(x => x.Employers.Where(x => x.Deleted != true))
                .ThenInclude(x => x.Departments.Where(x => x.Deleted != true));
    }

    return retVal;          
}

如果用户有疑问,我们只加入雇主。然而,问题是雇主可以有部门、雇员、经理等……而那些本身可以有大量的子属性。

目前,我们的查询加入了查询的几乎所有排列,产生了一个非常庞大的 SQL 查询。如果用户只想要组织名称和每个雇主的名称,这将是很多繁重的工作。

在最顶层进行过滤很容易(如上所示),但我不知道如何从那时起进行查询,我似乎最终陷入了儿童的无限循环......例如:

var employerSubField = context.SubFields["employers"];
var otherJoins = employerSubField.SelectionSet.Children.Where(x => x.Children)

我似乎无法得到一个 where name == "Employees" 或类似的东西。我是否需要在某个时候将 GraphQL.Language.AST.INode 转换为某些东西?当我在调试时检查值时,看起来我应该能够看到我所追求的值。但这不会编译。

var deptsField = employerSubField.SelectionSet.Selections.Where(x => x.Name == "departments");

调试信息

4

1 回答 1

0

我找到了以下方法来获取基本信息,然后我可以轻松地解析自己并添加自己的自定义逻辑。

var query = context.Document.OriginalQuery.Substring(context.Document.OriginalQuery.IndexOf("{")).RemoveWhitespace();

返回:

{organisations{id,name,employers{id,name,clientNotes,departments{id,name}}}}
于 2021-03-19T15:53:53.420 回答