File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -310,9 +310,10 @@ SchemaCoordinate: Name . Name
310
310
4. Otherwise if {type } is an Input Object type :
311
311
1. Let {inputFieldName } be the value of the second {Name }.
312
312
2. Return the input field of {type } named {inputFieldName }.
313
- 5. Otherwise {type } must be an Object or Interface type :
314
- 1. Let {fieldName } be the value of the second {Name }.
315
- 2. Return the field of {type } named {fieldName }.
313
+ 5. Otherwise :
314
+ 1. Assert : {type } must be an Object or Interface type .
315
+ 2. Let {fieldName } be the value of the second {Name }.
316
+ 3. Return the field of {type } named {fieldName }.
316
317
317
318
SchemaCoordinate : Name . Name ( Name : )
318
319
1. Let {typeName } be the value of the first {Name }.
@@ -414,7 +415,7 @@ The following table demonstrates how to select various kinds of schema members:
414
415
| `Address` | `Address` interface |
415
416
| `Address.city` | `city` field on the `Address` interface |
416
417
| `ReviewInput` | `ReviewInput` input object type |
417
- | `ReviewInput.author` | `author` field on the `ReviewInput` input object type |
418
+ | `ReviewInput.author` | `author` input field on the `ReviewInput` input object type |
418
419
| `Entity` | `Entity` union definition |
419
420
| `DateTime` | Custom `DateTime` scalar type |
420
421
| `String` | Built-in `String` scalar type |
You can’t perform that action at this time.
0 commit comments