We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9195b commit 3ed4b74Copy full SHA for 3ed4b74
src/GraphQL.EntityFramework/GraphQlExtensions.cs
@@ -8,9 +8,10 @@ public static async Task<ExecutionResult> ExecuteWithErrorCheck(
8
this IDocumentExecuter executer,
9
ExecutionOptions options)
10
{
11
+ options.ThrowOnUnhandledException = true;
12
+
13
var executionResult = await executer.ExecuteAsync(options);
14
- options.ThrowOnUnhandledException = true;
15
var errors = executionResult.Errors;
16
if (errors is { Count: > 0 })
17
0 commit comments