@@ -203,7 +203,7 @@ describe('Execute: Handles inputs', () => {
203
203
errors : [
204
204
{
205
205
message :
206
- 'Argument " input" has invalid value ["foo", "bar", "baz"].' ,
206
+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value ["foo", "bar", "baz"].' ,
207
207
path : [ 'fieldWithObjectInput' ] ,
208
208
locations : [ { line : 3 , column : 41 } ] ,
209
209
} ,
@@ -617,7 +617,7 @@ describe('Execute: Handles inputs', () => {
617
617
errors : [
618
618
{
619
619
message :
620
- 'Variable "$value" of required type " String!" was not provided.' ,
620
+ 'Variable "$value" of required type String! was not provided.' ,
621
621
locations : [ { line : 2 , column : 16 } ] ,
622
622
} ,
623
623
] ,
@@ -636,7 +636,7 @@ describe('Execute: Handles inputs', () => {
636
636
errors : [
637
637
{
638
638
message :
639
- 'Variable "$value" of non-null type " String!" must not be null.' ,
639
+ 'Variable "$value" of non-null type String! must not be null.' ,
640
640
locations : [ { line : 2 , column : 16 } ] ,
641
641
} ,
642
642
] ,
@@ -682,7 +682,7 @@ describe('Execute: Handles inputs', () => {
682
682
errors : [
683
683
{
684
684
message :
685
- 'Argument " input" of required type " String!" was not provided.' ,
685
+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was not provided.' ,
686
686
locations : [ { line : 1 , column : 3 } ] ,
687
687
path : [ 'fieldWithNonNullableStringInput' ] ,
688
688
} ,
@@ -730,7 +730,7 @@ describe('Execute: Handles inputs', () => {
730
730
errors : [
731
731
{
732
732
message :
733
- 'Argument " input" of required type " String!" was provided the variable "$foo" which was not provided a runtime value.' ,
733
+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was provided the variable "$foo" which was not provided a runtime value.' ,
734
734
locations : [ { line : 3 , column : 50 } ] ,
735
735
path : [ 'fieldWithNonNullableStringInput' ] ,
736
736
} ,
@@ -785,7 +785,7 @@ describe('Execute: Handles inputs', () => {
785
785
errors : [
786
786
{
787
787
message :
788
- 'Variable "$input" of non-null type " [String]!" must not be null.' ,
788
+ 'Variable "$input" of non-null type [String]! must not be null.' ,
789
789
locations : [ { line : 2 , column : 16 } ] ,
790
790
} ,
791
791
] ,
@@ -867,7 +867,7 @@ describe('Execute: Handles inputs', () => {
867
867
errors : [
868
868
{
869
869
message :
870
- 'Variable "$input" of non-null type " [String!]!" must not be null.' ,
870
+ 'Variable "$input" of non-null type [String!]! must not be null.' ,
871
871
locations : [ { line : 2 , column : 16 } ] ,
872
872
} ,
873
873
] ,
@@ -916,7 +916,7 @@ describe('Execute: Handles inputs', () => {
916
916
errors : [
917
917
{
918
918
message :
919
- 'Variable "$input" expected value of type " TestType!" which cannot be used as an input type.' ,
919
+ 'Variable "$input" expected value of type TestType! which cannot be used as an input type.' ,
920
920
locations : [ { line : 2 , column : 24 } ] ,
921
921
} ,
922
922
] ,
@@ -935,7 +935,7 @@ describe('Execute: Handles inputs', () => {
935
935
errors : [
936
936
{
937
937
message :
938
- 'Variable "$input" expected value of type " UnknownType!" which cannot be used as an input type.' ,
938
+ 'Variable "$input" expected value of type UnknownType! which cannot be used as an input type.' ,
939
939
locations : [ { line : 2 , column : 24 } ] ,
940
940
} ,
941
941
] ,
@@ -981,7 +981,8 @@ describe('Execute: Handles inputs', () => {
981
981
} ,
982
982
errors : [
983
983
{
984
- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
984
+ message :
985
+ 'Argument TestType.fieldWithDefaultArgumentValue(input:) of type String has invalid value WRONG_TYPE.' ,
985
986
locations : [ { line : 3 , column : 48 } ] ,
986
987
path : [ 'fieldWithDefaultArgumentValue' ] ,
987
988
} ,
0 commit comments