@@ -204,7 +204,7 @@ describe('Execute: Handles inputs', () => {
204204 errors : [
205205 {
206206 message :
207- 'Argument " input" has invalid value ["foo", "bar", "baz"].' ,
207+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value ["foo", "bar", "baz"].' ,
208208 path : [ 'fieldWithObjectInput' ] ,
209209 locations : [ { line : 3 , column : 41 } ] ,
210210 } ,
@@ -618,7 +618,7 @@ describe('Execute: Handles inputs', () => {
618618 errors : [
619619 {
620620 message :
621- 'Variable "$value" of required type " String!" was not provided.' ,
621+ 'Variable "$value" of required type String! was not provided.' ,
622622 locations : [ { line : 2 , column : 16 } ] ,
623623 } ,
624624 ] ,
@@ -637,7 +637,7 @@ describe('Execute: Handles inputs', () => {
637637 errors : [
638638 {
639639 message :
640- 'Variable "$value" of non-null type " String!" must not be null.' ,
640+ 'Variable "$value" of non-null type String! must not be null.' ,
641641 locations : [ { line : 2 , column : 16 } ] ,
642642 } ,
643643 ] ,
@@ -683,7 +683,7 @@ describe('Execute: Handles inputs', () => {
683683 errors : [
684684 {
685685 message :
686- 'Argument " input" of required type " String!" was not provided.' ,
686+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was not provided.' ,
687687 locations : [ { line : 1 , column : 3 } ] ,
688688 path : [ 'fieldWithNonNullableStringInput' ] ,
689689 } ,
@@ -731,7 +731,7 @@ describe('Execute: Handles inputs', () => {
731731 errors : [
732732 {
733733 message :
734- 'Argument " input" of required type " String!" was provided the variable "$foo" which was not provided a runtime value.' ,
734+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was provided the variable "$foo" which was not provided a runtime value.' ,
735735 locations : [ { line : 3 , column : 50 } ] ,
736736 path : [ 'fieldWithNonNullableStringInput' ] ,
737737 } ,
@@ -786,7 +786,7 @@ describe('Execute: Handles inputs', () => {
786786 errors : [
787787 {
788788 message :
789- 'Variable "$input" of non-null type " [String]!" must not be null.' ,
789+ 'Variable "$input" of non-null type [String]! must not be null.' ,
790790 locations : [ { line : 2 , column : 16 } ] ,
791791 } ,
792792 ] ,
@@ -868,7 +868,7 @@ describe('Execute: Handles inputs', () => {
868868 errors : [
869869 {
870870 message :
871- 'Variable "$input" of non-null type " [String!]!" must not be null.' ,
871+ 'Variable "$input" of non-null type [String!]! must not be null.' ,
872872 locations : [ { line : 2 , column : 16 } ] ,
873873 } ,
874874 ] ,
@@ -917,7 +917,7 @@ describe('Execute: Handles inputs', () => {
917917 errors : [
918918 {
919919 message :
920- 'Variable "$input" expected value of type " TestType!" which cannot be used as an input type.' ,
920+ 'Variable "$input" expected value of type TestType! which cannot be used as an input type.' ,
921921 locations : [ { line : 2 , column : 24 } ] ,
922922 } ,
923923 ] ,
@@ -936,7 +936,7 @@ describe('Execute: Handles inputs', () => {
936936 errors : [
937937 {
938938 message :
939- 'Variable "$input" expected value of type " UnknownType!" which cannot be used as an input type.' ,
939+ 'Variable "$input" expected value of type UnknownType! which cannot be used as an input type.' ,
940940 locations : [ { line : 2 , column : 24 } ] ,
941941 } ,
942942 ] ,
@@ -982,7 +982,8 @@ describe('Execute: Handles inputs', () => {
982982 } ,
983983 errors : [
984984 {
985- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
985+ message :
986+ 'Argument TestType.fieldWithDefaultArgumentValue(input:) of type String has invalid value WRONG_TYPE.' ,
986987 locations : [ { line : 3 , column : 48 } ] ,
987988 path : [ 'fieldWithDefaultArgumentValue' ] ,
988989 } ,
0 commit comments