@@ -197,7 +197,7 @@ MergeSelectionSets(fields):
197
197
CompleteValue(fieldType, result, subSelectionSet):
198
198
* If the {fieldType} is a Non-Null type:
199
199
* Let {innerType} be the inner type of {fieldType}.
200
- * Let {completedResult} be the result of calling {CompleteValue(innerType, result)}.
200
+ * Let {completedResult} be the result of calling {CompleteValue(innerType, result, subSelectionSet )}.
201
201
* If {completedResult} is {null}, throw a field error.
202
202
* Return {completedResult}.
203
203
* If {result} is {null} or a value similar to {null} such as {undefined} or
@@ -206,7 +206,7 @@ CompleteValue(fieldType, result, subSelectionSet):
206
206
* If {result} is not a collection of values, throw a field error.
207
207
* Let {innerType} be the inner type of {fieldType}.
208
208
* Return a list where each item is the result of calling
209
- {CompleteValue(innerType, resultItem)}, where {resultItem} is each item
209
+ {CompleteValue(innerType, resultItem, subSelectionSet )}, where {resultItem} is each item
210
210
in {result}.
211
211
* If {fieldType} is a Scalar or Enum type:
212
212
* Return the result of "coercing" {result}, ensuring it is a legal value of
0 commit comments