Skip to content

Commit 76bec1c

Browse files
committed
Add another example
1 parent ef70568 commit 76bec1c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spec/Section 3 -- Type System.md

+1
Original file line numberDiff line numberDiff line change
@@ -1836,6 +1836,7 @@ Following are examples of input coercion with various list types and values:
18361836
| `[Int!]` | `[1, $b]` | `{"b": null}` | Error: Item must be non-null |
18371837
| `[[Int]]` | `[[1], [2, 3]]` | `{}` | `[[1], [2, 3]]` |
18381838
| `[[Int]]` | `[1, 2, 3]` | `{}` | `[[1], [2], [3]]` |
1839+
| `[[Int]]` | `[1, [2], 3]` | `{}` | `[[1], [2], [3]]` |
18391840
| `[[Int]]` | `[1, null, 3]` | `{}` | `[[1], null, [3]]` |
18401841
| `[[Int]]` | `[[1], ["b"]]` | `{}` | Error: Incorrect item value |
18411842
| `[[Int]]` | `1` | `{}` | `[[1]]` |

0 commit comments

Comments
 (0)