@@ -371,7 +371,7 @@ describe('Execute: Handles inputs', () => {
371
371
{
372
372
message :
373
373
'Variable "$input" got invalid value ' +
374
- '{"a": "foo","b": "bar","c": null}; ' +
374
+ '{a: "foo", b: "bar", c: null}; ' +
375
375
'Expected non-nullable type String! not to be null at value.c.' ,
376
376
locations : [ { line : 2 , column : 16 } ] ,
377
377
} ,
@@ -401,7 +401,7 @@ describe('Execute: Handles inputs', () => {
401
401
errors : [
402
402
{
403
403
message :
404
- 'Variable "$input" got invalid value {"a": "foo","b": "bar"}; ' +
404
+ 'Variable "$input" got invalid value {a: "foo", b: "bar"}; ' +
405
405
'Field value.c of required type String! was not provided.' ,
406
406
locations : [ { line : 2 , column : 16 } ] ,
407
407
} ,
@@ -421,13 +421,13 @@ describe('Execute: Handles inputs', () => {
421
421
errors : [
422
422
{
423
423
message :
424
- 'Variable "$input" got invalid value {"na":{"a": "foo"}}; ' +
424
+ 'Variable "$input" got invalid value {na: {a: "foo"}}; ' +
425
425
'Field value.na.c of required type String! was not provided.' ,
426
426
locations : [ { line : 2 , column : 18 } ] ,
427
427
} ,
428
428
{
429
429
message :
430
- 'Variable "$input" got invalid value {"na":{"a": "foo"}}; ' +
430
+ 'Variable "$input" got invalid value {na: {a: "foo"}}; ' +
431
431
'Field value.nb of required type String! was not provided.' ,
432
432
locations : [ { line : 2 , column : 18 } ] ,
433
433
} ,
@@ -446,7 +446,7 @@ describe('Execute: Handles inputs', () => {
446
446
{
447
447
message :
448
448
'Variable "$input" got invalid value ' +
449
- '{"a": "foo","b": "bar","c": "baz"," extra": "dog"}; ' +
449
+ '{a: "foo", b: "bar", c: "baz", extra: "dog"}; ' +
450
450
'Field "extra" is not defined by type TestInputObject.' ,
451
451
locations : [ { line : 2 , column : 16 } ] ,
452
452
} ,
@@ -693,8 +693,8 @@ describe('Execute: Handles inputs', () => {
693
693
errors : [
694
694
{
695
695
message :
696
- 'Variable "$value" got invalid value [1,2, 3]; Expected type ' +
697
- 'String; String cannot represent an array value: [1,2, 3]' ,
696
+ 'Variable "$value" got invalid value [1, 2, 3]; Expected type ' +
697
+ 'String; String cannot represent an array value: [1, 2, 3]' ,
698
698
locations : [ { line : 2 , column : 16 } ] ,
699
699
} ,
700
700
] ,
@@ -841,7 +841,7 @@ describe('Execute: Handles inputs', () => {
841
841
errors : [
842
842
{
843
843
message :
844
- 'Variable "$input" got invalid value ["A",null,"B"]; ' +
844
+ 'Variable "$input" got invalid value ["A", null, "B"]; ' +
845
845
'Expected non-nullable type String! not to be null at value[1].' ,
846
846
locations : [ { line : 2 , column : 16 } ] ,
847
847
} ,
@@ -891,7 +891,7 @@ describe('Execute: Handles inputs', () => {
891
891
errors : [
892
892
{
893
893
message :
894
- 'Variable "$input" got invalid value ["A",null,"B"]; ' +
894
+ 'Variable "$input" got invalid value ["A", null, "B"]; ' +
895
895
'Expected non-nullable type String! not to be null at value[1].' ,
896
896
locations : [ { line : 2 , column : 16 } ] ,
897
897
} ,
0 commit comments