Skip to content

Commit 57949e7

Browse files
authored
Update Section 5 -- Validation.md
1 parent 4578e77 commit 57949e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Section 5 -- Validation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ fragment safeDifferingArgs on Pet {
555555
```
556556

557557
However, the field responses must be shapes which can be merged. For example,
558-
scalar values must not differ. In this example, `someValue` might be a `String`
558+
scalar types must not differ. In this example, `someValue` might be a `String`
559559
or an `Int`:
560560

561561
```graphql counter-example
@@ -575,9 +575,9 @@ fragment conflictingDifferingResponses on Pet {
575575

576576
- For each {selection} in the document:
577577
- Let {selectionType} be the result type of {selection}.
578-
- If {selectionType} is a scalar or enum:
578+
- If {selectionType} is a scalar or enum or list of these types:
579579
- The subselection set of that selection must be empty.
580-
- If {selectionType} is an interface, union, or object:
580+
- If {selectionType} is an interface, union, or object or list of these types:
581581
- The subselection set of that selection must NOT BE empty.
582582

583583
**Explanatory Text**

0 commit comments

Comments
 (0)