Skip to content

Commit 959fe1b

Browse files
committed
update resolution grammar
1 parent 580d292 commit 959fe1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/Section 2 -- Language.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1465,12 +1465,12 @@ of the introspection schema with a schema coordinate (e.g. `Business.__typename`
14651465
or `__Type.fields(includeDeprecated:)`), they are not _schema element_ and
14661466
therefore resolving such coordinates does not have a defined behavior.
14671467

1468-
TypeCoordinate : Name
1468+
TypeCoordinate :: Name
14691469

14701470
1. Let {typeName} be the value of {Name}.
14711471
2. Return the type in {schema} named {typeName} if it exists.
14721472

1473-
MemberCoordinate : Name . Name
1473+
MemberCoordinate :: Name . Name
14741474

14751475
1. Let {typeName} be the value of the first {Name}.
14761476
2. 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

14911491
1. Let {typeName} be the value of the first {Name}.
14921492
2. Let {type} be the type in {schema} named {typeName}.
@@ -1497,12 +1497,12 @@ ArgumentCoordinate : Name . Name ( Name : )
14971497
7. Let {fieldArgumentName} be the value of the third {Name}.
14981498
8. Return the argument of {field} named {fieldArgumentName} if it exists.
14991499

1500-
DirectiveCoordinate : @ Name
1500+
DirectiveCoordinate :: @ Name
15011501

15021502
1. Let {directiveName} be the value of {Name}.
15031503
2. Return the directive in {schema} named {directiveName} if it exists.
15041504

1505-
DirectiveArgumentCoordinate : @ Name ( Name : )
1505+
DirectiveArgumentCoordinate :: @ Name ( Name : )
15061506

15071507
1. Let {directiveName} be the value of the first {Name}.
15081508
2. Let {directive} be the directive in {schema} named {directiveName}.

0 commit comments

Comments
 (0)