@@ -214,13 +214,13 @@ export function assertNonNullType(type: unknown): GraphQLNonNull<GraphQLType> {
214
214
215
215
export function isSemanticNonNullType (
216
216
type : unknown ,
217
- ) : type is GraphQLSemanticNonNull < GraphQLNullableType & GraphQLOutputType > {
217
+ ) : type is GraphQLSemanticNonNull < GraphQLNullableOutputType > {
218
218
return instanceOf ( type , GraphQLSemanticNonNull ) ;
219
219
}
220
220
221
221
export function assertSemanticNonNullType (
222
222
type : unknown ,
223
- ) : GraphQLSemanticNonNull < GraphQLNullableType & GraphQLOutputType > {
223
+ ) : GraphQLSemanticNonNull < GraphQLNullableOutputType > {
224
224
if ( ! isSemanticNonNullType ( type ) ) {
225
225
throw new Error (
226
226
`Expected ${ inspect ( type ) } to be a GraphQL Semantic-Non-Null type.` ,
@@ -475,9 +475,7 @@ export class GraphQLNonNull<T extends GraphQLNullableType> {
475
475
*
476
476
* @experimental
477
477
*/
478
- export class GraphQLSemanticNonNull <
479
- T extends GraphQLNullableType & GraphQLOutputType ,
480
- > {
478
+ export class GraphQLSemanticNonNull < T extends GraphQLNullableOutputType > {
481
479
readonly ofType : T ;
482
480
483
481
constructor ( ofType : T ) {
@@ -509,7 +507,7 @@ export class GraphQLSemanticNonNull<
509
507
export type GraphQLWrappingType =
510
508
| GraphQLList < GraphQLType >
511
509
| GraphQLNonNull < GraphQLNullableType >
512
- | GraphQLSemanticNonNull < GraphQLNullableType & GraphQLOutputType > ;
510
+ | GraphQLSemanticNonNull < GraphQLNullableOutputType > ;
513
511
514
512
export function isWrappingType ( type : unknown ) : type is GraphQLWrappingType {
515
513
return isListType ( type ) || isNonNullType ( type ) || isSemanticNonNullType ( type ) ;
@@ -534,6 +532,17 @@ export type GraphQLNullableType =
534
532
| GraphQLInputObjectType
535
533
| GraphQLList < GraphQLType > ;
536
534
535
+ /**
536
+ * These types can all accept null as a value, and are suitable for output.
537
+ */
538
+ export type GraphQLNullableOutputType =
539
+ | GraphQLScalarType
540
+ | GraphQLObjectType
541
+ | GraphQLInterfaceType
542
+ | GraphQLUnionType
543
+ | GraphQLEnumType
544
+ | GraphQLList < GraphQLOutputType > ;
545
+
537
546
export function isNullableType ( type : unknown ) : type is GraphQLNullableType {
538
547
return isType ( type ) && ! isNonNullType ( type ) && ! isSemanticNonNullType ( type ) ;
539
548
}
0 commit comments