You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If {objectType} provide an internal function {generatorResolver} for
708
-
generating partitially resolved valueof a list field named {fieldName}:
708
+
generating partitially resolved value of a list field named {fieldName}:
709
709
* Let {generatorResolver} be the internal function.
710
710
* Return the iterator from calling {generatorResolver}, providing
711
711
{objectValue}, {argumentValues} and {initialCount}.
@@ -716,7 +716,7 @@ Note: It is common for {resolver} to be asynchronous due to relying on reading
716
716
an underlying database or networked service to produce a value. This
717
717
necessitates the rest of a GraphQL executor to handle an asynchronous
718
718
execution flow. In addition, a commom implementation of {generator} is to leverage
719
-
asynchronous iterators or asynchronous generators provided by many programing languages.
719
+
asynchronous iterators or asynchronous generators provided by many programming languages.
720
720
721
721
### Value Completion
722
722
@@ -769,8 +769,8 @@ CompleteValue(fieldType, fields, result, variableValues, subsequentPayloads, par
769
769
* If {result} is {null} (or another internal value similar to {null} such as
770
770
{undefined} or {NaN}), return {null}.
771
771
* If {fieldType} is a List type:
772
-
* If {result} is a iterator:
773
-
* Let {field} be thte first entry in {fields}.
772
+
* If {result} is an iterator:
773
+
* Let {field} be the first entry in {fields}.
774
774
* Let {innerType} be the inner type of {fieldType}.
775
775
* Let {streamDirective} be the `@stream` directived provided on {field}.
776
776
* Let {initialCount} be the value or variable provided to {streamDirective}'s {initialCount} argument.
@@ -784,7 +784,7 @@ CompleteValue(fieldType, fields, result, variableValues, subsequentPayloads, par
784
784
* Let {streamRecord} be the result of calling {CreateStreamRecord(label, initialCount, result, remainingItems, initialCount, fields, innerType, parentPath)}
785
785
* Append {streamRecord} to {subsequentPayloads}.
786
786
* Let {result} be {initialItems}.
787
-
* Exit For each loop.
787
+
* Exit for each loop.
788
788
* If {result} is not a collection of values, throw a field error.
789
789
* Let {innerType} be the inner type of {fieldType}.
790
790
* Return a list where each list item is the result of calling
0 commit comments