Skip to content

Commit

Permalink
Fixed XML Summaries in the data projects.
Browse files Browse the repository at this point in the history
michaelstaib committed Feb 7, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 1a634ca commit 41da429
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -31,33 +31,33 @@ public delegate QueryableFilterContext VisitFilterArgument(
public class QueryableFilterProvider : FilterProvider<QueryableFilterContext>
{
/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that defines the name of the argument for filtering
/// </summary>
public static readonly string ContextArgumentNameKey = "FilterArgumentName";

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that holds the delegate which does the visitation of the filtering argument.
/// <see cref="VisitFilterArgument"/>
/// </summary>
public static readonly string ContextVisitFilterArgumentKey = nameof(VisitFilterArgument);

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that holds the delegate which applies the filtering to input
/// <see cref="ApplyFiltering"/>
/// </summary>
public static readonly string ContextApplyFilteringKey = nameof(ApplyFiltering);

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that defines if filtering is already applied and should be skipped
/// </summary>
public static readonly string SkipFilteringKey = "SkipFiltering";

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that stores a custom value node that is used instead of the value node on the argument
/// </summary>
public static readonly string ContextValueNodeKey = nameof(QueryableFilterProvider);
Original file line number Diff line number Diff line change
@@ -20,14 +20,14 @@ namespace HotChocolate.Data.Projections.Expressions;
public class QueryableProjectionProvider : ProjectionProvider
{
/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that holds the delegate which applies the projection to input
/// <see cref="ApplyProjection"/>
/// </summary>
public static readonly string ContextApplyProjectionKey = nameof(ApplyProjection);

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that defines if projection is already applied and should be skipped
/// </summary>
public const string SkipProjectionKey = "SkipProjection";
Original file line number Diff line number Diff line change
@@ -32,27 +32,27 @@ public delegate QueryableSortContext VisitSortArgument(
public class QueryableSortProvider : SortProvider<QueryableSortContext>
{
/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that defines the name of the argument for sorting
/// </summary>
public const string ContextArgumentNameKey = "SortArgumentName";

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that holds the delegate which does the visitation of the sorting argument.
/// <see cref="VisitSortArgument"/>
/// </summary>
public const string ContextVisitSortArgumentKey = nameof(VisitSortArgument);

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that holds the delegate which applies the sorting to input
/// <see cref="ApplySorting"/>
/// </summary>
public const string ContextApplySortingKey = nameof(ApplySorting);

/// <summary>
/// The key for <see cref="IResolverContext.ContextData"/> on <see cref="IResolverContext"/>
/// The key for <see cref="IHasContextData.ContextData"/> on <see cref="IResolverContext"/>
/// that defines if sorting is already applied and should be skipped
/// </summary>
public const string SkipSortingKey = "SkipSorting";

0 comments on commit 41da429

Please sign in to comment.