@@ -2080,8 +2080,8 @@ SchemaCoordinate :
2080
2080
:: A *schema coordinate * is a human readable string that uniquely identifies a
2081
2081
*schema element * within a GraphQL Schema .
2082
2082
2083
- :: A *schema element * is a specific instance of a named type , type field ,
2084
- input field , enum value , field argument , directive , or directive argument .
2083
+ :: A *schema element * is a specific instance of a named type , field , input
2084
+ field , enum value , field argument , directive , or directive argument .
2085
2085
2086
2086
A *schema coordinate * is always unique . Each *schema element * may be referenced
2087
2087
by exactly one possible schema coordinate .
@@ -2127,8 +2127,8 @@ SchemaCoordinate : Name . Name ( Name : )
2127
2127
4. Let {fieldName } be the value of the second {Name }.
2128
2128
5. Let {field } be the field of {type } named {fieldName }.
2129
2129
6. Assert {field } must exist .
2130
- 7. Let {argumentName } be the value of the third {Name }.
2131
- 8. Return the argument of {field } named {argumentName }.
2130
+ 7. Let {fieldArgumentName } be the value of the third {Name }.
2131
+ 8. Return the argument of {field } named {fieldArgumentName }.
2132
2132
2133
2133
SchemaCoordinate : @ Name
2134
2134
1. Let {directiveName } be the value of the first {Name }.
@@ -2138,15 +2138,15 @@ SchemaCoordinate : @ Name ( Name : )
2138
2138
1. Let {directiveName } be the value of the first {Name }.
2139
2139
2. Let {directive } be the directive in the {schema } named {directiveName }.
2140
2140
3. Assert {directive } must exist .
2141
- 4. Let {argumentName } be the value of the second {Name }.
2142
- 5. Return the argument of {directive } named {argumentName }.
2141
+ 4. Let {directiveArgumentName } be the value of the second {Name }.
2142
+ 5. Return the argument of {directive } named {directiveArgumentName }.
2143
2143
2144
2144
**Examples **
2145
2145
2146
2146
| Element Kind | *Schema Coordinate * | *Schema Element * |
2147
2147
| ------------------ | -------------------------------- | ----------------------------------------------------------------------- |
2148
2148
| Named Type | `Business ` | `Business ` type |
2149
- | Type Field | `Business .name ` | `name ` field on the `Business ` type |
2149
+ | Field | `Business .name ` | `name ` field on the `Business ` type |
2150
2150
| Input Field | `SearchCriteria .filter ` | `filter ` input field on the `SearchCriteria ` input object type |
2151
2151
| Enum Value | `SearchFilter .OPEN_NOW ` | `OPEN_NOW ` value of the `SearchFilter ` enum |
2152
2152
| Field Argument | `Query .searchBusiness (criteria :)`| `criteria ` argument on the `searchBusiness ` field on the `Query ` type |
0 commit comments