Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Benjie <benjie@jemjie.com>
  • Loading branch information
JoviDeCroock and benjie committed Feb 14, 2024
1 parent cabff48 commit 420b969
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/Section 4 -- Introspection.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ Fields\:

**Input Object**

Input objects are types defined as a list of named input values. They
Input objects are composite types defined as a list of named input values. They
are only used as inputs to arguments and variables and cannot be a field return
type.

Expand Down
5 changes: 3 additions & 2 deletions spec/Section 5 -- Validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ SameResponseShape(fieldA, fieldB):
- If {typeA} or {typeB} is Scalar or Enum:
- If {typeA} and {typeB} are the same type return true, otherwise return
false.
- Assert: {typeA} and {typeB} are both an object, union or interface type.
- Assert: {typeA} is an object, union or interface type.
- Assert: {typeB} is an object, union or interface type.
- Let {mergedSet} be the result of adding the selection set of {fieldA} and the
selection set of {fieldB}.
- Let {fieldsForName} be the set of selections with a given response name in
Expand Down Expand Up @@ -910,7 +911,7 @@ fragment inlineNotExistingType on Dog {
}
```

#### Fragments on object, interface or union Types
#### Fragments on Object, Interface or Union Types

**Formal Specification**

Expand Down

0 comments on commit 420b969

Please sign in to comment.