Skip to content

Commit

Permalink
Renamed Schema Merge Middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed May 19, 2023
1 parent 9ff9ed0 commit 9932266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ internal FusionGraphComposer(
_pipeline =
MergePipelineBuilder.New()
.Use<ParseSubgraphSchemaMiddleware>()
.Use<RegisterClientMiddleware>()
.Use<RegisterClientsMiddleware>()
.Use<ApplyRenameDirectiveMiddleware>()
.Use<ApplyRemoveDirectiveMiddleware>()
.Use(() => new EnrichEntityMiddleware(entityEnrichers))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace HotChocolate.Fusion.Composition.Pipeline;
/// <summary>
/// Middleware that adds client configurations for subgraphs with the distributed fusion graph.
/// </summary>
internal sealed class RegisterClientMiddleware : IMergeMiddleware
internal sealed class RegisterClientsMiddleware : IMergeMiddleware
{
/// <inheritdoc />
public async ValueTask InvokeAsync(CompositionContext context, MergeDelegate next)
Expand Down

0 comments on commit 9932266

Please sign in to comment.