Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/HotChocolate/Core/src/Types/Resolvers/IResolverContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ public interface IResolverContext : IPureResolverContext
/// <value></value>
NameString ResponseName { get; }

/// <summary>
/// Gets the current execution path.
/// </summary>
// note: this needs to stay here for compatibility reasons.
new Path Path { get; }

/// <summary>
/// Indicates that the context has errors. To report new errors use <see cref="ReportError(IError)"/>
/// </summary>
Expand Down