File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ StringCharacter :: \ EscapedCharacter
737
737
* Return the character value of {EscapedCharacter} according to the table below.
738
738
739
739
| Escaped Character | Code Unit Value | Character Name |
740
- ----------------------------------------------------------------------
740
+ | ----------------- | --------------- | ---------------------------- |
741
741
| ` " ` | U+0022 | double quote |
742
742
| ` \ ` | U+005C | reverse solidus (back slash) |
743
743
| ` / ` | U+002F | solidus (forward slash) |
Original file line number Diff line number Diff line change @@ -818,12 +818,12 @@ input ExampleInputObject {
818
818
```
819
819
820
820
Original Value | Variables | Coerced Value
821
- -------------------------------------------- -----------------------------------
822
- `{ a : "abc" , b : 123 }` | | `{ a : "abc" , b : 123 }`
823
- `{ a : 123, b : "123" }` | | `{ a : "123" , b : 123 }`
824
- `{ a : "abc" }` | | Error : Missing required field {b }
825
- `{ a : "abc" , b : null }` | | Error : {b } must be non -null .
826
- `{ a : null , b : 1 }` | | `{ a : null , b : 1 }`
821
+ ----------------------- | --------------- | -----------------------------------
822
+ `{ a : "abc" , b : 123 }` | { null } | `{ a : "abc" , b : 123 }`
823
+ `{ a : 123, b : "123" }` | { null } | `{ a : "123" , b : 123 }`
824
+ `{ a : "abc" }` | { null } | Error : Missing required field {b }
825
+ `{ a : "abc" , b : null }` | { null } | Error : {b } must be non -null .
826
+ `{ a : null , b : 1 }` | { null } | `{ a : null , b : 1 }`
827
827
`{ b : $var }` | `{ var : 123 }` | `{ b : 123 }`
828
828
`{ b : $var }` | `{}` | Error : Missing required field {b }.
829
829
`{ b : $var }` | `{ var : null }` | Error : {b } must be non -null .
You can’t perform that action at this time.
0 commit comments