File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/HotChocolate/Core/src/Execution.Abstractions/Execution/Extensions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public static bool IsStreamResult(this IExecutionResult result)
7878 /// <summary>
7979 /// Expects a single GraphQL operation result.
8080 /// </summary>
81- public static OperationResult ExpectOperationResult ( this IExecutionResult result )
81+ public static IOperationResult ExpectOperationResult ( this IExecutionResult result )
8282 {
8383 if ( result is IOperationResult qr )
8484 {
@@ -104,7 +104,7 @@ public static OperationResultBatch ExpectOperationResultBatch(this IExecutionRes
104104 /// <summary>
105105 /// Expect a stream result.
106106 /// </summary>
107- public static ResponseStream ExpectResponseStream ( this IExecutionResult result )
107+ public static IResponseStream ExpectResponseStream ( this IExecutionResult result )
108108 {
109109 if ( result is IResponseStream rs )
110110 {
You can’t perform that action at this time.
0 commit comments