@@ -198,7 +198,7 @@ describe('Execute: Handles inputs', () => {
198
198
errors : [
199
199
{
200
200
message :
201
- 'Argument "input" has invalid value ["foo", "bar", "baz"].' ,
201
+ 'Argument "input" has invalid value: Expected value of type "TestInputObject" to be an object, found ["foo", "bar", "baz"].' ,
202
202
path : [ 'fieldWithObjectInput' ] ,
203
203
locations : [ { line : 3 , column : 41 } ] ,
204
204
} ,
@@ -368,7 +368,7 @@ describe('Execute: Handles inputs', () => {
368
368
errors : [
369
369
{
370
370
message :
371
- 'Variable "$input" got invalid value null at "input.c"; Expected non-nullable type "String!" not to be null.' ,
371
+ 'Variable "$input" has invalid value at .c: Expected value of non-null type "String!" not to be null.' ,
372
372
locations : [ { line : 2 , column : 16 } ] ,
373
373
} ,
374
374
] ,
@@ -382,7 +382,7 @@ describe('Execute: Handles inputs', () => {
382
382
errors : [
383
383
{
384
384
message :
385
- 'Variable "$input" got invalid value "foo bar"; Expected type "TestInputObject" to be an object.' ,
385
+ 'Variable "$input" has invalid value: Expected value of type "TestInputObject" to be an object, found "foo bar" .' ,
386
386
locations : [ { line : 2 , column : 16 } ] ,
387
387
} ,
388
388
] ,
@@ -396,7 +396,7 @@ describe('Execute: Handles inputs', () => {
396
396
errors : [
397
397
{
398
398
message :
399
- 'Variable "$input" got invalid value { a: "foo", b: "bar" }; Field "c" of required type "String!" was not provided. ' ,
399
+ 'Variable "$input" has invalid value: Expected value of type "TestInputObject" to include required field "c", found { a: "foo", b: "bar" } ' ,
400
400
locations : [ { line : 2 , column : 16 } ] ,
401
401
} ,
402
402
] ,
@@ -415,12 +415,12 @@ describe('Execute: Handles inputs', () => {
415
415
errors : [
416
416
{
417
417
message :
418
- 'Variable "$input" got invalid value { a: "foo" } at "input.na"; Field "c" of required type "String!" was not provided. ' ,
418
+ 'Variable "$input" has invalid value at .na: Expected value of type "TestInputObject" to include required field "c", found { a: "foo" } ' ,
419
419
locations : [ { line : 2 , column : 18 } ] ,
420
420
} ,
421
421
{
422
422
message :
423
- 'Variable "$input" got invalid value { na: { a: "foo" } }; Field "nb" of required type "String!" was not provided. ' ,
423
+ 'Variable "$input" has invalid value: Expected value of type "TestNestedInputObject" to include required field "nb", found { na: { a: "foo" } } ' ,
424
424
locations : [ { line : 2 , column : 18 } ] ,
425
425
} ,
426
426
] ,
@@ -437,7 +437,7 @@ describe('Execute: Handles inputs', () => {
437
437
errors : [
438
438
{
439
439
message :
440
- 'Variable "$input" got invalid value { a: "foo", b: "bar", c: "baz", extra: "dog" }; Field "extra" is not defined by type "TestInputObject". ' ,
440
+ 'Variable "$input" has invalid value: Expected value of type "TestInputObject" not to include unknown field "extra", found { a: "foo", b: "bar", c: "baz", extra: "dog" }' ,
441
441
locations : [ { line : 2 , column : 16 } ] ,
442
442
} ,
443
443
] ,
@@ -612,7 +612,7 @@ describe('Execute: Handles inputs', () => {
612
612
errors : [
613
613
{
614
614
message :
615
- 'Variable "$value" of required type "String!" was not provided.' ,
615
+ 'Variable "$value" has invalid value: Expected a value of non-null type "String!" to be provided.' ,
616
616
locations : [ { line : 2 , column : 16 } ] ,
617
617
} ,
618
618
] ,
@@ -631,7 +631,7 @@ describe('Execute: Handles inputs', () => {
631
631
errors : [
632
632
{
633
633
message :
634
- 'Variable "$value" of non-null type "String!" must not be null.' ,
634
+ 'Variable "$value" has invalid value: Expected value of non-null type "String!" not to be null.' ,
635
635
locations : [ { line : 2 , column : 16 } ] ,
636
636
} ,
637
637
] ,
@@ -697,7 +697,7 @@ describe('Execute: Handles inputs', () => {
697
697
errors : [
698
698
{
699
699
message :
700
- 'Variable "$value" got invalid value [1, 2, 3]; String cannot represent a non string value: [1, 2, 3]' ,
700
+ 'Variable "$value" has invalid value: String cannot represent a non string value: [1, 2, 3]' ,
701
701
locations : [ { line : 2 , column : 16 } ] ,
702
702
} ,
703
703
] ,
@@ -725,7 +725,7 @@ describe('Execute: Handles inputs', () => {
725
725
errors : [
726
726
{
727
727
message :
728
- 'Argument "input" of required type "String!" was provided the variable "$foo" which was not provided a runtime value.' ,
728
+ 'Argument "input" has invalid value: Expected variable "$foo" provided to type "String!" to provide a runtime value.' ,
729
729
locations : [ { line : 3 , column : 50 } ] ,
730
730
path : [ 'fieldWithNonNullableStringInput' ] ,
731
731
} ,
@@ -780,7 +780,7 @@ describe('Execute: Handles inputs', () => {
780
780
errors : [
781
781
{
782
782
message :
783
- 'Variable "$input" of non-null type "[String]!" must not be null.' ,
783
+ 'Variable "$input" has invalid value: Expected value of non-null type "[String]!" not to be null.' ,
784
784
locations : [ { line : 2 , column : 16 } ] ,
785
785
} ,
786
786
] ,
@@ -843,7 +843,7 @@ describe('Execute: Handles inputs', () => {
843
843
errors : [
844
844
{
845
845
message :
846
- 'Variable "$input" got invalid value null at "input [1]"; Expected non-nullable type "String!" not to be null.' ,
846
+ 'Variable "$input" has invalid value at [1]: Expected value of non-null type "String!" not to be null.' ,
847
847
locations : [ { line : 2 , column : 16 } ] ,
848
848
} ,
849
849
] ,
@@ -862,7 +862,7 @@ describe('Execute: Handles inputs', () => {
862
862
errors : [
863
863
{
864
864
message :
865
- 'Variable "$input" of non-null type "[String!]!" must not be null.' ,
865
+ 'Variable "$input" has invalid value: Expected value of non-null type "[String!]!" not to be null.' ,
866
866
locations : [ { line : 2 , column : 16 } ] ,
867
867
} ,
868
868
] ,
@@ -892,7 +892,7 @@ describe('Execute: Handles inputs', () => {
892
892
errors : [
893
893
{
894
894
message :
895
- 'Variable "$input" got invalid value null at "input [1]"; Expected non-nullable type "String!" not to be null.' ,
895
+ 'Variable "$input" has invalid value at [1]: Expected value of non-null type "String!" not to be null.' ,
896
896
locations : [ { line : 2 , column : 16 } ] ,
897
897
} ,
898
898
] ,
@@ -976,7 +976,8 @@ describe('Execute: Handles inputs', () => {
976
976
} ,
977
977
errors : [
978
978
{
979
- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
979
+ message :
980
+ 'Argument "input" has invalid value: String cannot represent a non string value: WRONG_TYPE' ,
980
981
locations : [ { line : 3 , column : 48 } ] ,
981
982
path : [ 'fieldWithDefaultArgumentValue' ] ,
982
983
} ,
@@ -1016,7 +1017,7 @@ describe('Execute: Handles inputs', () => {
1016
1017
1017
1018
function invalidValueError ( value : number , index : number ) {
1018
1019
return {
1019
- message : `Variable "$input" got invalid value ${ value } at "input [${ index } ]"; String cannot represent a non string value: ${ value } ` ,
1020
+ message : `Variable "$input" has invalid value at [${ index } ]: String cannot represent a non string value: ${ value } ` ,
1020
1021
locations : [ { line : 2 , column : 14 } ] ,
1021
1022
} ;
1022
1023
}
0 commit comments