@@ -226,7 +226,7 @@ describe('Execute: Handles inputs', () => {
226
226
errors : [
227
227
{
228
228
message :
229
- 'Argument " input" has invalid value ["foo", "bar", "baz"].' ,
229
+ 'Argument TestType.fieldWithObjectInput( input:) of type TestInputObject has invalid value ["foo", "bar", "baz"].' ,
230
230
path : [ 'fieldWithObjectInput' ] ,
231
231
locations : [ { line : 3 , column : 41 } ] ,
232
232
} ,
@@ -262,7 +262,7 @@ describe('Execute: Handles inputs', () => {
262
262
errors : [
263
263
{
264
264
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" }.' ,
266
266
path : [ 'fieldWithObjectInput' ] ,
267
267
locations : [ { line : 3 , column : 41 } ] ,
268
268
} ,
@@ -678,7 +678,7 @@ describe('Execute: Handles inputs', () => {
678
678
errors : [
679
679
{
680
680
message :
681
- 'Variable "$value" of required type " String!" was not provided.' ,
681
+ 'Variable "$value" of required type String! was not provided.' ,
682
682
locations : [ { line : 2 , column : 16 } ] ,
683
683
} ,
684
684
] ,
@@ -697,7 +697,7 @@ describe('Execute: Handles inputs', () => {
697
697
errors : [
698
698
{
699
699
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.' ,
701
701
locations : [ { line : 2 , column : 16 } ] ,
702
702
} ,
703
703
] ,
@@ -743,7 +743,7 @@ describe('Execute: Handles inputs', () => {
743
743
errors : [
744
744
{
745
745
message :
746
- 'Argument " input" of required type " String!" was not provided.' ,
746
+ 'Argument TestType.fieldWithNonNullableStringInput( input:) of required type String! was not provided.' ,
747
747
locations : [ { line : 1 , column : 3 } ] ,
748
748
path : [ 'fieldWithNonNullableStringInput' ] ,
749
749
} ,
@@ -791,7 +791,7 @@ describe('Execute: Handles inputs', () => {
791
791
errors : [
792
792
{
793
793
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.' ,
795
795
locations : [ { line : 3 , column : 50 } ] ,
796
796
path : [ 'fieldWithNonNullableStringInput' ] ,
797
797
} ,
@@ -846,7 +846,7 @@ describe('Execute: Handles inputs', () => {
846
846
errors : [
847
847
{
848
848
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.' ,
850
850
locations : [ { line : 2 , column : 16 } ] ,
851
851
} ,
852
852
] ,
@@ -928,7 +928,7 @@ describe('Execute: Handles inputs', () => {
928
928
errors : [
929
929
{
930
930
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.' ,
932
932
locations : [ { line : 2 , column : 16 } ] ,
933
933
} ,
934
934
] ,
@@ -977,7 +977,7 @@ describe('Execute: Handles inputs', () => {
977
977
errors : [
978
978
{
979
979
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.' ,
981
981
locations : [ { line : 2 , column : 24 } ] ,
982
982
} ,
983
983
] ,
@@ -996,7 +996,7 @@ describe('Execute: Handles inputs', () => {
996
996
errors : [
997
997
{
998
998
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.' ,
1000
1000
locations : [ { line : 2 , column : 24 } ] ,
1001
1001
} ,
1002
1002
] ,
@@ -1042,7 +1042,8 @@ describe('Execute: Handles inputs', () => {
1042
1042
} ,
1043
1043
errors : [
1044
1044
{
1045
- message : 'Argument "input" has invalid value WRONG_TYPE.' ,
1045
+ message :
1046
+ 'Argument TestType.fieldWithDefaultArgumentValue(input:) of type String has invalid value WRONG_TYPE.' ,
1046
1047
locations : [ { line : 3 , column : 48 } ] ,
1047
1048
path : [ 'fieldWithDefaultArgumentValue' ] ,
1048
1049
} ,
0 commit comments