@@ -32,6 +32,15 @@ public GraphQLHttpMiddleware(
32
32
: base ( next , serializer , documentExecuter , serviceScopeFactory , options , hostApplicationLifetime )
33
33
{
34
34
}
35
+
36
+ /// <inheritdoc/>
37
+ protected override ValueTask < IDictionary < string , object ? > > BuildUserContextAsync ( HttpContext context , object ? payload )
38
+ {
39
+ var userContextBuilder = context . RequestServices . GetService < IUserContextBuilder < TSchema > > ( ) ;
40
+ return userContextBuilder == null
41
+ ? base . BuildUserContextAsync ( context , payload )
42
+ : userContextBuilder . BuildUserContextAsync ( context , payload ) ;
43
+ }
35
44
}
36
45
37
46
/// <summary>
@@ -405,17 +414,18 @@ protected virtual async Task<ExecutionResult> ExecuteRequestAsync(HttpContext co
405
414
/// <see cref="IHttpContextAccessor"/> via <see cref="ExecutionOptions.RequestServices"/>
406
415
/// if needed.
407
416
/// <br/><br/>
408
- /// By default this method pulls the registered <see cref="IUserContextBuilder"/>,
409
- /// if any, within the service scope and executes it to build the user context.
417
+ /// By default this method pulls the registered <see cref="IUserContextBuilder{TSchema}"/>
418
+ /// or <see cref="IUserContextBuilder"/> instance, if any, within the service scope
419
+ /// and executes it to build the user context.
410
420
/// In this manner, both scoped and singleton <see cref="IUserContextBuilder"/>
411
421
/// instances are supported, although singleton instances are recommended.
412
422
/// </summary>
413
- protected virtual async ValueTask < IDictionary < string , object ? > > BuildUserContextAsync ( HttpContext context , object ? payload )
423
+ protected virtual ValueTask < IDictionary < string , object ? > > BuildUserContextAsync ( HttpContext context , object ? payload )
414
424
{
415
425
var userContextBuilder = context . RequestServices . GetService < IUserContextBuilder > ( ) ;
416
426
var userContext = userContextBuilder == null
417
- ? new Dictionary < string , object ? > ( )
418
- : await userContextBuilder . BuildUserContextAsync ( context , payload ) ;
427
+ ? new ( new Dictionary < string , object ? > ( ) )
428
+ : userContextBuilder . BuildUserContextAsync ( context , payload ) ;
419
429
return userContext ;
420
430
}
421
431
0 commit comments