Skip to content

Commit

Permalink
change TypeName to NamedType for clearer semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Jul 17, 2015
1 parent dd0b9e8 commit ac2f86e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Section 8 -- Grammar.md
Expand Up @@ -286,7 +286,7 @@ FragmentDefinition : fragment FragmentName on TypeCondition Directives? Selectio

FragmentName : Name but not `on`

TypeCondition : TypeName
TypeCondition : NamedType


### Values
Expand Down Expand Up @@ -373,16 +373,16 @@ GraphQL describes the schema of the data it provides using a type system. These
types are referred to in the document when defining query variables.

Type :
- TypeName
- NamedType
- ListType
- NonNullType

TypeName : Name
NamedType : Name

ListType : [ Type ]

NonNullType :
- TypeName !
- NamedType !
- ListType !

**Semantics**
Expand Down

0 comments on commit ac2f86e

Please sign in to comment.