@@ -1249,7 +1249,7 @@ query variableIsDefinedUsedInSingleFragment($atOtherHomes: Boolean) {
1249
1249
}
1250
1250
1251
1251
fragment isHousetrainedFragment on Dog {
1252
- isHousetrained (atOtherHomes : $atOtherHomes }
1252
+ isHousetrained (atOtherHomes : $atOtherHomes )
1253
1253
}
1254
1254
```
1255
1255
@@ -1268,7 +1268,7 @@ query variableIsNotDefinedUsedInSingleFragment {
1268
1268
}
1269
1269
1270
1270
fragment isHousetrainedFragment on Dog {
1271
- isHousetrained(atOtherHomes : $atOtherHomes }
1271
+ isHousetrained(atOtherHomes: $atOtherHomes)
1272
1272
}
1273
1273
```
1274
1274
@@ -1286,7 +1286,7 @@ fragment outerHousetrainedFragment on Dog {
1286
1286
}
1287
1287
1288
1288
fragment isHousetrainedFragment on Dog {
1289
- isHousetrained (atOtherHomes : $atOtherHomes }
1289
+ isHousetrained(atOtherHomes: $atOtherHomes)
1290
1290
}
1291
1291
```
1292
1292
@@ -1307,7 +1307,7 @@ query housetrainedQueryTwo($atOtherHomes: Boolean) {
1307
1307
}
1308
1308
1309
1309
fragment isHousetrainedFragment on Dog {
1310
- isHousetrained (atOtherHomes : $atOtherHomes }
1310
+ isHousetrained (atOtherHomes : $atOtherHomes )
1311
1311
}
1312
1312
```
1313
1313
@@ -1494,7 +1494,7 @@ and inner types. A nullable list cannot be passed to a non-null list, and a list
1494
1494
of nullable values cannot be passed to a list of non-null values.
1495
1495
1496
1496
``` graphql
1497
- query nonNullListToList ($nonNullBooleanList : ! [Boolean ]) {
1497
+ query nonNullListToList ($nonNullBooleanList : [Boolean ]! ) {
1498
1498
arguments {
1499
1499
booleanListArgField (booleanListArg : $nonNullBooleanList )
1500
1500
}
0 commit comments