Skip to content

Commit cb1dcd3

Browse files
authored
Call new hooks in aggregate composite type interceptor (#8609)
1 parent fb64475 commit cb1dcd3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/HotChocolate/Fusion-vnext/src/Fusion.Execution.Types/Completion/AggregateCompositeTypeInterceptor.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,14 @@ public override void OnCompleteOutputField(
3636
interceptor.OnCompleteOutputField(context, type, field, operationType, ref features);
3737
}
3838
}
39+
40+
public override void OnAfterCompleteSchema(
41+
ICompositeSchemaBuilderContext context,
42+
FusionSchemaDefinition schema)
43+
{
44+
foreach (var interceptor in _interceptors)
45+
{
46+
interceptor.OnAfterCompleteSchema(context, schema);
47+
}
48+
}
3949
}

0 commit comments

Comments
 (0)