@@ -226,7 +226,7 @@ describe('Execute: Handles inputs', () => {
226226 errors : [
227227 {
228228 message :
229- 'Argument " input" has invalid value ["foo", "bar", "baz"].' ,
229+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value ["foo", "bar", "baz"].' ,
230230 path : [ 'fieldWithObjectInput' ] ,
231231 locations : [ { line : 3 , column : 41 } ] ,
232232 } ,
@@ -262,7 +262,7 @@ describe('Execute: Handles inputs', () => {
262262 errors : [
263263 {
264264 message :
265- 'Argument " input" has invalid value { c: "foo", e: "bar" }.' ,
265+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value { c: "foo", e: "bar" }.' ,
266266 path : [ 'fieldWithObjectInput' ] ,
267267 locations : [ { line : 3 , column : 41 } ] ,
268268 } ,
@@ -678,7 +678,7 @@ describe('Execute: Handles inputs', () => {
678678 errors : [
679679 {
680680 message :
681- 'Variable "$value" of required type " String!" was not provided.' ,
681+ 'Variable "$value" of required type String! was not provided.' ,
682682 locations : [ { line : 2 , column : 16 } ] ,
683683 } ,
684684 ] ,
@@ -697,7 +697,7 @@ describe('Execute: Handles inputs', () => {
697697 errors : [
698698 {
699699 message :
700- 'Variable "$value" of non-null type " String!" must not be null.' ,
700+ 'Variable "$value" of non-null type String! must not be null.' ,
701701 locations : [ { line : 2 , column : 16 } ] ,
702702 } ,
703703 ] ,
@@ -743,7 +743,7 @@ describe('Execute: Handles inputs', () => {
743743 errors : [
744744 {
745745 message :
746- 'Argument " input" of required type " String!" was not provided.' ,
746+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was not provided.' ,
747747 locations : [ { line : 1 , column : 3 } ] ,
748748 path : [ 'fieldWithNonNullableStringInput' ] ,
749749 } ,
@@ -791,7 +791,7 @@ describe('Execute: Handles inputs', () => {
791791 errors : [
792792 {
793793 message :
794- 'Argument " input" of required type " String!" was provided the variable "$foo" which was not provided a runtime value.' ,
794+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was provided the variable "$foo" which was not provided a runtime value.' ,
795795 locations : [ { line : 3 , column : 50 } ] ,
796796 path : [ 'fieldWithNonNullableStringInput' ] ,
797797 } ,
@@ -846,7 +846,7 @@ describe('Execute: Handles inputs', () => {
846846 errors : [
847847 {
848848 message :
849- 'Variable "$input" of non-null type " [String]!" must not be null.' ,
849+ 'Variable "$input" of non-null type [String]! must not be null.' ,
850850 locations : [ { line : 2 , column : 16 } ] ,
851851 } ,
852852 ] ,
@@ -928,7 +928,7 @@ describe('Execute: Handles inputs', () => {
928928 errors : [
929929 {
930930 message :
931- 'Variable "$input" of non-null type " [String!]!" must not be null.' ,
931+ 'Variable "$input" of non-null type [String!]! must not be null.' ,
932932 locations : [ { line : 2 , column : 16 } ] ,
933933 } ,
934934 ] ,
@@ -977,7 +977,7 @@ describe('Execute: Handles inputs', () => {
977977 errors : [
978978 {
979979 message :
980- 'Variable "$input" expected value of type " TestType!" which cannot be used as an input type.' ,
980+ 'Variable "$input" expected value of type TestType! which cannot be used as an input type.' ,
981981 locations : [ { line : 2 , column : 24 } ] ,
982982 } ,
983983 ] ,
@@ -996,7 +996,7 @@ describe('Execute: Handles inputs', () => {
996996 errors : [
997997 {
998998 message :
999- 'Variable "$input" expected value of type " UnknownType!" which cannot be used as an input type.' ,
999+ 'Variable "$input" expected value of type UnknownType! which cannot be used as an input type.' ,
10001000 locations : [ { line : 2 , column : 24 } ] ,
10011001 } ,
10021002 ] ,
@@ -1042,7 +1042,8 @@ describe('Execute: Handles inputs', () => {
10421042 } ,
10431043 errors : [
10441044 {
1045- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
1045+ message :
1046+ 'Argument TestType.fieldWithDefaultArgumentValue(input:) of type String has invalid value WRONG_TYPE.' ,
10461047 locations : [ { line : 3 , column : 48 } ] ,
10471048 path : [ 'fieldWithDefaultArgumentValue' ] ,
10481049 } ,
0 commit comments