@@ -2178,8 +2178,8 @@ SchemaCoordinate :
2178
2178
:: A *schema coordinate * is a human readable string that uniquely identifies a
2179
2179
*schema element * within a GraphQL Schema .
2180
2180
2181
- :: A *schema element * is a specific instance of a named type , type field ,
2182
- input field , enum value , field argument , directive , or directive argument .
2181
+ :: A *schema element * is a specific instance of a named type , field , input
2182
+ field , enum value , field argument , directive , or directive argument .
2183
2183
2184
2184
A *schema coordinate * is always unique . Each *schema element * may be referenced
2185
2185
by exactly one possible schema coordinate .
@@ -2225,8 +2225,8 @@ SchemaCoordinate : Name . Name ( Name : )
2225
2225
4. Let {fieldName } be the value of the second {Name }.
2226
2226
5. Let {field } be the field of {type } named {fieldName }.
2227
2227
6. Assert {field } must exist .
2228
- 7. Let {argumentName } be the value of the third {Name }.
2229
- 8. Return the argument of {field } named {argumentName }.
2228
+ 7. Let {fieldArgumentName } be the value of the third {Name }.
2229
+ 8. Return the argument of {field } named {fieldArgumentName }.
2230
2230
2231
2231
SchemaCoordinate : @ Name
2232
2232
1. Let {directiveName } be the value of the first {Name }.
@@ -2236,15 +2236,15 @@ SchemaCoordinate : @ Name ( Name : )
2236
2236
1. Let {directiveName } be the value of the first {Name }.
2237
2237
2. Let {directive } be the directive in the {schema } named {directiveName }.
2238
2238
3. Assert {directive } must exist .
2239
- 4. Let {argumentName } be the value of the second {Name }.
2240
- 5. Return the argument of {directive } named {argumentName }.
2239
+ 4. Let {directiveArgumentName } be the value of the second {Name }.
2240
+ 5. Return the argument of {directive } named {directiveArgumentName }.
2241
2241
2242
2242
**Examples **
2243
2243
2244
2244
| Element Kind | *Schema Coordinate * | *Schema Element * |
2245
2245
| ------------------ | -------------------------------- | ----------------------------------------------------------------------- |
2246
2246
| Named Type | `Business ` | `Business ` type |
2247
- | Type Field | `Business .name ` | `name ` field on the `Business ` type |
2247
+ | Field | `Business .name ` | `name ` field on the `Business ` type |
2248
2248
| Input Field | `SearchCriteria .filter ` | `filter ` input field on the `SearchCriteria ` input object type |
2249
2249
| Enum Value | `SearchFilter .OPEN_NOW ` | `OPEN_NOW ` value of the `SearchFilter ` enum |
2250
2250
| Field Argument | `Query .searchBusiness (criteria :)`| `criteria ` argument on the `searchBusiness ` field on the `Query ` type |
0 commit comments