@@ -203,7 +203,7 @@ describe('Execute: Handles inputs', () => {
203203 errors : [
204204 {
205205 message :
206- 'Argument " input" has invalid value ["foo", "bar", "baz"].' ,
206+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value ["foo", "bar", "baz"].' ,
207207 path : [ 'fieldWithObjectInput' ] ,
208208 locations : [ { line : 3 , column : 41 } ] ,
209209 } ,
@@ -617,7 +617,7 @@ describe('Execute: Handles inputs', () => {
617617 errors : [
618618 {
619619 message :
620- 'Variable "$value" of required type " String!" was not provided.' ,
620+ 'Variable "$value" of required type String! was not provided.' ,
621621 locations : [ { line : 2 , column : 16 } ] ,
622622 } ,
623623 ] ,
@@ -636,7 +636,7 @@ describe('Execute: Handles inputs', () => {
636636 errors : [
637637 {
638638 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.' ,
640640 locations : [ { line : 2 , column : 16 } ] ,
641641 } ,
642642 ] ,
@@ -682,7 +682,7 @@ describe('Execute: Handles inputs', () => {
682682 errors : [
683683 {
684684 message :
685- 'Argument " input" of required type " String!" was not provided.' ,
685+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was not provided.' ,
686686 locations : [ { line : 1 , column : 3 } ] ,
687687 path : [ 'fieldWithNonNullableStringInput' ] ,
688688 } ,
@@ -730,7 +730,7 @@ describe('Execute: Handles inputs', () => {
730730 errors : [
731731 {
732732 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.' ,
734734 locations : [ { line : 3 , column : 50 } ] ,
735735 path : [ 'fieldWithNonNullableStringInput' ] ,
736736 } ,
@@ -785,7 +785,7 @@ describe('Execute: Handles inputs', () => {
785785 errors : [
786786 {
787787 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.' ,
789789 locations : [ { line : 2 , column : 16 } ] ,
790790 } ,
791791 ] ,
@@ -867,7 +867,7 @@ describe('Execute: Handles inputs', () => {
867867 errors : [
868868 {
869869 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.' ,
871871 locations : [ { line : 2 , column : 16 } ] ,
872872 } ,
873873 ] ,
@@ -916,7 +916,7 @@ describe('Execute: Handles inputs', () => {
916916 errors : [
917917 {
918918 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.' ,
920920 locations : [ { line : 2 , column : 24 } ] ,
921921 } ,
922922 ] ,
@@ -935,7 +935,7 @@ describe('Execute: Handles inputs', () => {
935935 errors : [
936936 {
937937 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.' ,
939939 locations : [ { line : 2 , column : 24 } ] ,
940940 } ,
941941 ] ,
@@ -981,7 +981,8 @@ describe('Execute: Handles inputs', () => {
981981 } ,
982982 errors : [
983983 {
984- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
984+ message :
985+ 'Argument TestType.fieldWithDefaultArgumentValue(input:) of type String has invalid value WRONG_TYPE.' ,
985986 locations : [ { line : 3 , column : 48 } ] ,
986987 path : [ 'fieldWithDefaultArgumentValue' ] ,
987988 } ,
0 commit comments