@@ -185,9 +185,9 @@ The response might look like:
185
185
```
186
186
187
187
If the field which experienced an error was declared as ` Non-Null ` , the ` null `
188
- result will propagate to the next nullable parent field. In that case, the
189
- ` path ` for the error should include the full path to the result field where the
190
- error was raised, even if that field is not present in the response.
188
+ result will bubble up to the next nullable field. In that case, the ` path ` for
189
+ the error should include the full path to the result field where the error was
190
+ raised, even if that field is not present in the response.
191
191
192
192
For example, if the ` name ` field from above had declared a ` Non-Null ` return
193
193
type in the schema, the result would look different but the error reported would
@@ -360,13 +360,13 @@ Incremental List Result's `path`. This output will be a list of the same type of
360
360
the response field at this path.
361
361
362
362
If any field errors were raised during the execution of the results in ` items `
363
- and these errors bubbled to a path higher than the Incremental List Result's
363
+ and these errors propagate to a path higher than the Incremental List Result's
364
364
path, The Incremental List Result is considered failed and should not be
365
365
included in the response stream. The errors that caused this failure will be
366
366
included in a Completed Result.
367
367
368
368
If any field errors were raised during the execution of the results in ` items `
369
- and these errors did not bubble to a path higher than the Incremental List
369
+ and these errors did not propagate to a path higher than the Incremental List
370
370
Result's path, the Incremental List Result must contain an entry with key
371
371
` errors ` containing these field errors. The value of this entry is described in
372
372
the "Errors" section.
@@ -396,13 +396,13 @@ Incremental Object Result must point to the Pending Result that results in the
396
396
shortest ` subPath ` .
397
397
398
398
If any field errors were raised during the execution of the results in ` data `
399
- and these errors bubbled to a path higher than the Incremental Object Result's
400
- path, The Incremental Object Result is considered failed and should not be
401
- included in the response stream. The errors that caused this failure will be
399
+ and these errors propagated to a path higher than the Incremental Object
400
+ Result's path, The Incremental Object Result is considered failed and should not
401
+ be included in the response stream. The errors that caused this failure will be
402
402
included in a Completed Result.
403
403
404
404
If any field errors were raised during the execution of the results in ` data `
405
- and these errors did not bubble to a path higher than the Incremental Object
405
+ and these errors did not propagate to a path higher than the Incremental Object
406
406
Result's path, the Incremental Object Result must contain an entry with key
407
407
` errors ` containing these field errors. The value of this entry is described in
408
408
the "Errors" section.
0 commit comments