From 76bec1c14ebc4c5bfffaacd2026beb2812ff1c86 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Mon, 13 Nov 2023 09:26:27 +0000 Subject: [PATCH] Add another example --- spec/Section 3 -- Type System.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index fd2ac2663..4827e773f 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1836,6 +1836,7 @@ Following are examples of input coercion with various list types and values: | `[Int!]` | `[1, $b]` | `{"b": null}` | Error: Item must be non-null | | `[[Int]]` | `[[1], [2, 3]]` | `{}` | `[[1], [2, 3]]` | | `[[Int]]` | `[1, 2, 3]` | `{}` | `[[1], [2], [3]]` | +| `[[Int]]` | `[1, [2], 3]` | `{}` | `[[1], [2], [3]]` | | `[[Int]]` | `[1, null, 3]` | `{}` | `[[1], null, [3]]` | | `[[Int]]` | `[[1], ["b"]]` | `{}` | Error: Incorrect item value | | `[[Int]]` | `1` | `{}` | `[[1]]` |