Skip to content

Commit 2d67b69

Browse files
authored
Fix typo in Input Objects (#741)
1 parent 478adf3 commit 2d67b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/Section 3 -- Type System.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ Literal Value | Variables | Coerced Value
15061506
`{ b: $var }` | `{ var: 123 }` | `{ b: 123 }`
15071507
`$var` | `{ var: { b: 123 } }` | `{ b: 123 }`
15081508
`"abc123"` | `{}` | Error: Incorrect value
1509-
`$var` | `{ var: "abc123" } }` | Error: Incorrect value
1509+
`$var` | `{ var: "abc123" }` | Error: Incorrect value
15101510
`{ a: "abc", b: "123" }` | `{}` | Error: Incorrect value for field {b}
15111511
`{ a: "abc" }` | `{}` | Error: Missing required field {b}
15121512
`{ b: $var }` | `{}` | Error: Missing required field {b}.

0 commit comments

Comments
 (0)