File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
scalars/contributed/jakobmerrild Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,7 @@ These are invalid examples:
4646
4747# Input coercion
4848
49- For input both ` number ` and ` string ` shall be accepted so long as the ` string ` is a base-10 representation of a
50- valid value within the range.
49+ For input ` number ` values shall be accepted so long as they fall within the range represented by the spec.
5150
5251These are valid examples:
5352
@@ -56,7 +55,6 @@ These are valid examples:
5655| ` 0 ` | IntValue within range |
5756| ` -9223372036854775808 ` | This is the lowest value that can be represented in the range |
5857| ` 9223372036854775807 ` | This is the largest value that can be represented in the range |
59- | ` "987654321" ` | A StringValue containing a base-10 representation of the value is allowed |
6058
6159These are invalid examples:
6260
@@ -67,4 +65,5 @@ These are invalid examples:
6765| ` 123.0 ` | FloatValue is not allowed |
6866| ` "FFFFF" ` | A StringValue containing a base-16 representation of a valid value is not allowed |
6967| ` "6543.000" ` | A StringValue containing a base-10 representation with a fractional part is not allowed. Even if the fractional part is zero |
68+ | ` "987654321" ` | A StringValue containing a base-10 representation of the value is not allowed |
7069
You can’t perform that action at this time.
0 commit comments