@@ -133,7 +133,7 @@ ExecuteQuery(query, schema, variableValues, initialValue):
133133- Let {selectionSet} be the top level Selection Set in {query}.
134134- Let {groupedFieldSet} be the result of {CollectRootFields(queryType,
135135 selectionSet, variableValues)}.
136- - Let {data} be the result of running {ExecuteFieldSet (groupedFieldSet,
136+ - Let {data} be the result of running {ExecuteGroupedFieldSet (groupedFieldSet,
137137 queryType, initialValue, variableValues)} _ normally_ (allowing
138138 parallelization).
139139- Let {errors} be the list of all _ field error_ raised while executing the
@@ -157,7 +157,7 @@ ExecuteMutation(mutation, schema, variableValues, initialValue):
157157- Let {selectionSet} be the top level Selection Set in {mutation}.
158158- Let {groupedFieldSet} be the result of {CollectRootFields(mutationType,
159159 selectionSet, variableValues)}.
160- - Let {data} be the result of running {ExecuteFieldSet (groupedFieldSet,
160+ - Let {data} be the result of running {ExecuteGroupedFieldSet (groupedFieldSet,
161161 mutationType, initialValue, variableValues)} _ serially_ .
162162- Let {errors} be the list of all _ field error_ raised while executing the
163163 selection set.
@@ -307,7 +307,7 @@ ExecuteSubscriptionEvent(subscription, schema, variableValues, initialValue):
307307- Let {selectionSet} be the top level Selection Set in {subscription}.
308308- Let {groupedFieldSet} be the result of {CollectRootFields(subscriptionType,
309309 selectionSet, variableValues)}.
310- - Let {data} be the result of running {ExecuteFieldSet (groupedFieldSet,
310+ - Let {data} be the result of running {ExecuteGroupedFieldSet (groupedFieldSet,
311311 subscriptionType, initialValue, variableValues)} _ normally_ (allowing
312312 parallelization).
313313- Let {errors} be the list of all _ field error_ raised while executing the
@@ -328,7 +328,7 @@ Unsubscribe(responseStream):
328328
329329- Cancel {responseStream}
330330
331- ## Executing Field Sets
331+ ## Executing Grouped Field Sets
332332
333333To execute a grouped field set, the object value being evaluated and the object
334334type need to be known, as well as whether it must be executed serially, or may
@@ -337,7 +337,8 @@ be executed in parallel.
337337Each represented field in the grouped field set produces an entry into a
338338response map.
339339
340- ExecuteFieldSet(groupedFieldSet, objectType, objectValue, variableValues):
340+ ExecuteGroupedFieldSet(groupedFieldSet, objectType, objectValue,
341+ variableValues):
341342
342343- Initialize {resultMap} to an empty ordered map.
343344- For each {groupedFieldSet} as {responseKey} and {fields}:
@@ -708,7 +709,7 @@ CompleteValue(fieldType, fields, result, variableValues):
708709 - Let {objectType} be {ResolveAbstractType(fieldType, result)}.
709710 - Let {groupedSubfieldSet} be the result of calling
710711 {CollectSubfields(objectType, fields, variableValues)}.
711- - Return the result of evaluating {ExecuteFieldSet (groupedSubfieldSet,
712+ - Return the result of evaluating {ExecuteGroupedFieldSet (groupedSubfieldSet,
712713 objectType, result, variableValues)} _ normally_ (allowing for
713714 parallelization).
714715
0 commit comments