Skip to content

Commit 1fcc617

Browse files
committed
Fixed XML Documentation Tags
1 parent 531e2ab commit 1fcc617

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

src/HotChocolate/Fusion/src/Core/Execution/Nodes/ResolveByKeyBatch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ private readonly struct BatchExecutionState(string batchKey, ExecutionState exec
371371

372372
/// <summary>
373373
/// Gets a list of keys representing the state that is being
374-
/// required to fetch data for the associated <see cref="SelectionSet"/>.
374+
/// required to fetch data for the associated <see cref="ResolverNodeBase.SelectionSet"/>.
375375
/// </summary>
376376
public IReadOnlyList<string> Requires { get; } = executionState.Requires;
377377

src/HotChocolate/Fusion/src/Core/Execution/Nodes/ResolverNodeBase.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,24 @@ protected ResolverNodeBase(int id, Config config)
5050
_hasDependencies = _requires.Length > 0 || _forwardedVariables.Length > 0;
5151
}
5252

53+
/// <summary>
54+
/// Gets the name of the subgraph that is targeted by this resolver.
55+
/// </summary>
5356
protected string SubgraphName => _subgraphName;
5457

58+
/// <summary>
59+
/// Gets the selection set for which data is being resolved.
60+
/// </summary>
5561
protected internal SelectionSet SelectionSet => _selectionSet;
5662

63+
/// <summary>
64+
/// Gets the state that is being required by this resolver to be executed.
65+
/// </summary>
5766
protected string[] Requires => _requires;
5867

68+
/// <summary>
69+
/// Gets the path from which the data has to be extracted.
70+
/// </summary>
5971
protected string[] Path => _path;
6072

6173
/// <summary>

src/HotChocolate/Fusion/src/Core/Planning/Steps/ExecutionStep.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ internal abstract class ExecutionStep
1515
/// <summary>
1616
/// Initializes a new instance of <see cref="ExecutionStep"/>.
1717
/// </summary>
18+
/// <param name="id">
19+
/// The query plan unique id of this execution step.
20+
/// </param>
1821
/// <param name="parentSelection">
1922
/// The parent selection of this execution step.
2023
/// </param>

0 commit comments

Comments
 (0)