@@ -1773,18 +1773,18 @@ constructing the list.
1773
1773
1774
1774
Following are examples of input coercion with various list types and values :
1775
1775
1776
- | Expected Type | Provided Value | Coerced Value |
1777
- | ------------- | ---------------- | --------------------------- |
1778
- | `[Int ]` | `[1, 2, 3]` | `[1, 2, 3]` |
1779
- | `[Int ]` | `[1, "b" , true ]` | Error : Incorrect item value |
1780
- | `[Int ]` | `1` | `[1]` |
1781
- | `[Int ]` | `null ` | `null ` |
1782
- | `[[Int ]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]` |
1783
- | `[[Int ]]` | `[1, 2, 3]` | `[[1], [2], [3]]` |
1784
- | `[[Int ]]` | `[1, null , 3]` | `[[1], null , [3]]` |
1785
- | `[[Int ]]` | `[[1], ["b" ]]` | Error : Incorrect item value |
1786
- | `[[Int ]]` | `1` | `[[1]]` |
1787
- | `[[Int ]]` | `null ` | `null ` |
1776
+ | Expected Type | Literal Value | Variable Values | Coerced Value |
1777
+ | ------------- | ---------------- | --------------- | --------------- ------------ |
1778
+ | `[Int ]` | `[1, 2, 3]` | `{}` | ` [1, 2, 3]` |
1779
+ | `[Int ]` | `[1, "b" , true ]` | `{}` | Error : Incorrect item value |
1780
+ | `[Int ]` | `1` | `{}` | ` [1]` |
1781
+ | `[Int ]` | `null ` | `{}` | ` null ` |
1782
+ | `[[Int ]]` | `[[1], [2, 3]]` | `{}` | ` [[1], [2, 3]]` |
1783
+ | `[[Int ]]` | `[1, 2, 3]` | `{}` | ` [[1], [2], [3]]` |
1784
+ | `[[Int ]]` | `[1, null , 3]` | `{}` | ` [[1], null , [3]]` |
1785
+ | `[[Int ]]` | `[[1], ["b" ]]` | `{}` | Error : Incorrect item value |
1786
+ | `[[Int ]]` | `1` | `{}` | ` [[1]]` |
1787
+ | `[[Int ]]` | `null ` | `{}` | ` null ` |
1788
1788
1789
1789
## Non-Null
1790
1790
0 commit comments