From 6cf65471e8af373f5c38d53845307562cd2260eb Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Sun, 2 Sep 2018 21:06:14 +0200 Subject: [PATCH] Added missing bracket to list input coercion table --- spec/Section 3 -- Type System.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 00bbb8e49..0a5741e0a 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1489,12 +1489,11 @@ Expected Type | Provided Value | Coerced Value `[Int]` | `[1, "b", true]` | Error: Incorrect item value `[Int]` | `1` | `[1]` `[Int]` | `null` | `null` -`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]` +`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]` `[[Int]]` | `[1, 2, 3]` | Error: Incorrect item value `[[Int]]` | `1` | `[[1]]` `[[Int]]` | `null` | `null` - ## Non-Null By default, all types in GraphQL are nullable; the {null} value is a valid