@@ -90,7 +90,7 @@ LineTerminator ::
9090Like white space, line terminators are used to improve the legibility of source
9191text and separate lexical tokens, any amount may appear before or after any
9292other token and have no significance to the semantic meaning of a GraphQL
93- Document. Line terminators are not found within any other token.
93+ Document.
9494
9595Note: Any error reporting which provides the line number in the source of the
9696offending syntax should use the preceding amount of {LineTerminator} to produce
@@ -358,8 +358,8 @@ piece of information available to request within a selection set.
358358Some fields describe complex data or relationships to other data. In order to
359359further explore this data, a field may itself contain a selection set, allowing
360360for deeply nested requests. All GraphQL operations must specify their selections
361- down to fields which return scalar values to ensure an unambiguously shaped
362- response.
361+ down to fields which return scalar or enum values (or lists of those types)
362+ to ensure an unambiguously shaped response.
363363
364364For example, this operation selects fields of complex data and relationships
365365down to scalar values.
@@ -668,7 +668,7 @@ be present and `likers` will not. Conversely when the result is a `Page`,
668668InlineFragment : ... TypeCondition? Directives? SelectionSet
669669
670670Fragments can be defined inline within a selection set. This is done to
671- conditionally include fields based on their runtime type. This feature of
671+ conditionally include fields based on parent object's runtime type. This feature of
672672standard fragment inclusion was demonstrated in the ` query FragmentTyping `
673673example. We could accomplish the same thing using inline fragments.
674674
@@ -1171,8 +1171,8 @@ VariableDefinition : Variable : Type DefaultValue? Directives[Const]?
11711171
11721172DefaultValue : = Value[ Const]
11731173
1174- A GraphQL operation can be parameterized with variables, maximizing reuse, and
1175- avoiding costly string building in clients at runtime .
1174+ A GraphQL operation can be parameterized with variables
1175+ maximizing reuse of parsed queries by the GraphQL service .
11761176
11771177If not defined as constant (for example, in {DefaultValue}), a {Variable} can be
11781178supplied for an input value.
0 commit comments