@@ -1465,12 +1465,12 @@ of the introspection schema with a schema coordinate (e.g. `Business.__typename`
1465
1465
or `__Type.fields(includeDeprecated:)`), they are not _schema element_ and
1466
1466
therefore resolving such coordinates does not have a defined behavior.
1467
1467
1468
- TypeCoordinate : Name
1468
+ TypeCoordinate :: Name
1469
1469
1470
1470
1. Let {typeName} be the value of {Name }.
1471
1471
2. Return the type in {schema} named {typeName } if it exists .
1472
1472
1473
- MemberCoordinate : Name . Name
1473
+ MemberCoordinate :: Name . Name
1474
1474
1475
1475
1. Let {typeName } be the value of the first {Name }.
1476
1476
2. Let {type } be the type in {schema} named {typeName }.
@@ -1486,7 +1486,7 @@ MemberCoordinate : Name . Name
1486
1486
1. Let {fieldName } be the value of the second {Name }.
1487
1487
2. Return the field of {type } named {fieldName } if it exists .
1488
1488
1489
- ArgumentCoordinate : Name . Name ( Name : )
1489
+ ArgumentCoordinate :: Name . Name ( Name : )
1490
1490
1491
1491
1. Let {typeName } be the value of the first {Name }.
1492
1492
2. Let {type } be the type in {schema} named {typeName }.
@@ -1497,12 +1497,12 @@ ArgumentCoordinate : Name . Name ( Name : )
1497
1497
7. Let {fieldArgumentName } be the value of the third {Name }.
1498
1498
8. Return the argument of {field } named {fieldArgumentName } if it exists .
1499
1499
1500
- DirectiveCoordinate : @ Name
1500
+ DirectiveCoordinate :: @ Name
1501
1501
1502
1502
1. Let {directiveName } be the value of {Name }.
1503
1503
2. Return the directive in {schema } named {directiveName } if it exists .
1504
1504
1505
- DirectiveArgumentCoordinate : @ Name ( Name : )
1505
+ DirectiveArgumentCoordinate :: @ Name ( Name : )
1506
1506
1507
1507
1. Let {directiveName } be the value of the first {Name }.
1508
1508
2. Let {directive } be the directive in {schema } named {directiveName }.
0 commit comments