We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0b9e8 commit ac2f86eCopy full SHA for ac2f86e
Section 8 -- Grammar.md
@@ -286,7 +286,7 @@ FragmentDefinition : fragment FragmentName on TypeCondition Directives? Selectio
286
287
FragmentName : Name but not `on`
288
289
-TypeCondition : TypeName
+TypeCondition : NamedType
290
291
292
### Values
@@ -373,16 +373,16 @@ GraphQL describes the schema of the data it provides using a type system. These
373
types are referred to in the document when defining query variables.
374
375
Type :
376
- - TypeName
+ - NamedType
377
- ListType
378
- NonNullType
379
380
-TypeName : Name
+NamedType : Name
381
382
ListType : [ Type ]
383
384
NonNullType :
385
- - TypeName !
+ - NamedType !
386
- ListType !
387
388
**Semantics**
0 commit comments