@@ -1465,12 +1465,12 @@ of the introspection schema with a schema coordinate (e.g. `Business.__typename`
14651465or `__Type.fields(includeDeprecated:)`), they are not _schema element_ and
14661466therefore resolving such coordinates does not have a defined behavior.
14671467
1468- TypeCoordinate : Name
1468+ TypeCoordinate :: Name
14691469
147014701. Let {typeName} be the value of {Name }.
147114712. Return the type in {schema} named {typeName } if it exists .
14721472
1473- MemberCoordinate : Name . Name
1473+ MemberCoordinate :: Name . Name
14741474
147514751. Let {typeName } be the value of the first {Name }.
147614762. Let {type } be the type in {schema} named {typeName }.
@@ -1486,7 +1486,7 @@ MemberCoordinate : Name . Name
14861486 1. Let {fieldName } be the value of the second {Name }.
14871487 2. Return the field of {type } named {fieldName } if it exists .
14881488
1489- ArgumentCoordinate : Name . Name ( Name : )
1489+ ArgumentCoordinate :: Name . Name ( Name : )
14901490
149114911. Let {typeName } be the value of the first {Name }.
149214922. Let {type } be the type in {schema} named {typeName }.
@@ -1497,12 +1497,12 @@ ArgumentCoordinate : Name . Name ( Name : )
149714977. Let {fieldArgumentName } be the value of the third {Name }.
149814988. Return the argument of {field } named {fieldArgumentName } if it exists .
14991499
1500- DirectiveCoordinate : @ Name
1500+ DirectiveCoordinate :: @ Name
15011501
150215021. Let {directiveName } be the value of {Name }.
150315032. Return the directive in {schema } named {directiveName } if it exists .
15041504
1505- DirectiveArgumentCoordinate : @ Name ( Name : )
1505+ DirectiveArgumentCoordinate :: @ Name ( Name : )
15061506
150715071. Let {directiveName } be the value of the first {Name }.
150815082. Let {directive } be the directive in {schema } named {directiveName }.
0 commit comments