如何在 GraphQL .Net GraphType First 中组织多个突变?

How does one organize more than a few mutations in GraphQL .Net GraphType First?

在 GraphQL .Net 中,大多数示例代码都有一个顶级突变图对象,其中定义了许多实际突变。
这是来自 GraphQL .NET mutations page:

的示例
public class StarWarsSchema : Schema
{
  public StarWarsSchema(IServiceProvider provider)
    : base(provider)
  {
    Query = provider.Resolve<StarWarsQuery>();
    Mutation = provider.Resolve<StarWarsMutation>();
  }
}


public class StarWarsMutation : ObjectGraphType
{
  public StarWarsMutation(StarWarsData data)
  {
    Field<HumanType>(
      "createHuman",
      arguments: new QueryArguments(
        new QueryArgument<NonNullGraphType<HumanInputType>> {Name = "human"}
      ),
      resolve: context =>
      {
        var human = context.GetArgument<Human>("human");
        return data.AddHuman(human);
      });
  }
}

当你有 1-5 个突变时,这似乎很好,但在一些更大的项目中加班,可以想象最终会有几十个突变。将它们放在一个大 class 中似乎就足够了,尽管似乎还缺少一些组织。我尝试将子突变 GraphTypeObject 放入父突变的字段中,但我在调用子突变时遇到了一些麻烦。可能是我设置错了。

这让我想知道,肯定有一个用户有十几个突变,他可能已经组织了他们的突变,而不是将他们所有的突变放在一个顶级突变对象中。

如何在 GraphQL .Net GraphType First 中组织多个变更?

https://graphql-dotnet.github.io/docs/getting-started/query-organization

您可以通过添加顶级字段将查询或变更“组合”在一起。 “技巧”是 return 解析器中的空对象。

public class StarWarsSchema : Schema
{
  public StarWarsSchema(IServiceProvider provider)
    : base(provider)
  {
    Query = provider.Resolve<StarWarsQuery>();
    Mutation = provider.Resolve<StarWarsMutation>();
  }
}

public class StarWarsMutation : ObjectGraphType
{
  public StarWarsMutation(StarWarsData data)
  {
    Field<CharacterMutation>(
      "characters",
      resolve: context => new { });
  }
}

public class CharacterMutation : ObjectGraphType
{
  public CharacterMutation(StarWarsData data)
  {
    Field<HumanType>(
      "createHuman",
      arguments: new QueryArguments(
        new QueryArgument<NonNullGraphType<HumanInputType>> {Name = "human"}
      ),
      resolve: context =>
      {
        var human = context.GetArgument<Human>("human");
        return data.AddHuman(human);
      });
  }
}

这种组织反映在如何调用突变(或查询)上。如果您只是希望它们在外部显示为一个平面列表(这相当于一个巨大的文件),您也可以使用部分 类.

将其分成任意数量的文件