Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 committed Jul 20, 2021
1 parent 74f9684 commit 2c2ef45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GraphQL.DI/DIObjectGraphBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace GraphQL.DI
/// used if the <see cref="IResolveFieldContext.Source"/> type is <see cref="object"/>.
/// </summary>
//this class is a placeholder for future support of properties or methods on the base class
public class DIObjectGraphBase<TSource> : IDIObjectGraphBase<TSource>, IProvideUserContext, IResolveFieldContext, IResolveFieldContext<TSource>
public class DIObjectGraphBase<TSource> : IDIObjectGraphBase<TSource>, IResolveFieldContext<TSource>
{
//this would be an ideal spot to put public readonly fields for the resolving query, such as Schema, Metrics, Executor, and so on, rather than being inside the ResolveFieldContext instance.
//this could only contain fields that are not unique to a resolving field (such as Source), so as to not break multithreading support
Expand Down

0 comments on commit 2c2ef45

Please sign in to comment.