@@ -968,7 +968,7 @@ type Query {
968
968
"Marks the field, argument, input field or enum value as deprecated"
969
969
directive @deprecated(
970
970
"The reason for the deprecation"
971
- reason: String = "No longer supported"
971
+ reason: String! = "No longer supported"
972
972
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
973
973
974
974
directive @enumTypeDirective on ENUM
@@ -1144,7 +1144,7 @@ input SomeInput {
1144
1144
result == ''' "Marks the field, argument, input field or enum value as deprecated"
1145
1145
directive @deprecated(
1146
1146
"The reason for the deprecation"
1147
- reason: String = "No longer supported"
1147
+ reason: String! = "No longer supported"
1148
1148
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1149
1149
1150
1150
"Directs the executor to include this field or fragment only when the `if` argument is true"
@@ -1240,7 +1240,7 @@ type Query {
1240
1240
resultWithDirectives == ''' "Marks the field, argument, input field or enum value as deprecated"
1241
1241
directive @deprecated(
1242
1242
"The reason for the deprecation"
1243
- reason: String = "No longer supported"
1243
+ reason: String! = "No longer supported"
1244
1244
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1245
1245
1246
1246
directive @example on FIELD_DEFINITION
@@ -1308,7 +1308,7 @@ type Query {
1308
1308
resultWithDirectiveDefinitions == ''' "Marks the field, argument, input field or enum value as deprecated"
1309
1309
directive @deprecated(
1310
1310
"The reason for the deprecation"
1311
- reason: String = "No longer supported"
1311
+ reason: String! = "No longer supported"
1312
1312
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1313
1313
1314
1314
directive @example on FIELD_DEFINITION
@@ -1405,7 +1405,7 @@ extend schema {
1405
1405
"Marks the field, argument, input field or enum value as deprecated"
1406
1406
directive @deprecated(
1407
1407
"The reason for the deprecation"
1408
- reason: String = "No longer supported"
1408
+ reason: String! = "No longer supported"
1409
1409
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1410
1410
1411
1411
"Directs the executor to include this field or fragment only when the `if` argument is true"
@@ -1491,7 +1491,7 @@ schema @schemaDirective{
1491
1491
"Marks the field, argument, input field or enum value as deprecated"
1492
1492
directive @deprecated(
1493
1493
"The reason for the deprecation"
1494
- reason: String = "No longer supported"
1494
+ reason: String! = "No longer supported"
1495
1495
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1496
1496
1497
1497
"Directs the executor to include this field or fragment only when the `if` argument is true"
@@ -1631,7 +1631,7 @@ type MyQuery {
1631
1631
result == ''' "Marks the field, argument, input field or enum value as deprecated"
1632
1632
directive @deprecated(
1633
1633
"The reason for the deprecation"
1634
- reason: String = "No longer supported"
1634
+ reason: String! = "No longer supported"
1635
1635
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1636
1636
1637
1637
directive @directive1 on SCALAR
@@ -1873,7 +1873,7 @@ type Query {
1873
1873
result == ''' "Marks the field, argument, input field or enum value as deprecated"
1874
1874
directive @deprecated(
1875
1875
"The reason for the deprecation"
1876
- reason: String = "No longer supported"
1876
+ reason: String! = "No longer supported"
1877
1877
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
1878
1878
1879
1879
type Query {
@@ -2167,7 +2167,7 @@ type PrintMeType {
2167
2167
"Marks the field, argument, input field or enum value as deprecated"
2168
2168
directive @deprecated(
2169
2169
"The reason for the deprecation"
2170
- reason: String = "No longer supported"
2170
+ reason: String! = "No longer supported"
2171
2171
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
2172
2172
2173
2173
directive @foo on SCHEMA
@@ -2399,7 +2399,7 @@ directive @include(
2399
2399
"Marks the field, argument, input field or enum value as deprecated"
2400
2400
directive @deprecated(
2401
2401
"The reason for the deprecation"
2402
- reason: String = "No longer supported"
2402
+ reason: String! = "No longer supported"
2403
2403
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
2404
2404
2405
2405
union ZUnion = XQuery | Query
@@ -2515,7 +2515,7 @@ schema {
2515
2515
"Marks the field, argument, input field or enum value as deprecated"
2516
2516
directive @deprecated(
2517
2517
"The reason for the deprecation"
2518
- reason: String = "No longer supported"
2518
+ reason: String! = "No longer supported"
2519
2519
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
2520
2520
2521
2521
" custom directive 'example' description 1"
@@ -2752,7 +2752,7 @@ schema {
2752
2752
"Marks the field, argument, input field or enum value as deprecated"
2753
2753
directive @deprecated(
2754
2754
"The reason for the deprecation"
2755
- reason: String = "No longer supported"
2755
+ reason: String! = "No longer supported"
2756
2756
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
2757
2757
2758
2758
" custom directive 'example' description 1"
@@ -2940,7 +2940,7 @@ input Input {
2940
2940
result == """ "Marks the field, argument, input field or enum value as deprecated"
2941
2941
directive @deprecated(
2942
2942
"The reason for the deprecation"
2943
- reason: String = "No longer supported"
2943
+ reason: String! = "No longer supported"
2944
2944
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION
2945
2945
2946
2946
"Directs the executor to include this field or fragment only when the `if` argument is true"
0 commit comments