Skip to content

Commit 96e8b53

Browse files
committed
Use GraphQLNullableOutputType instead of intersection
1 parent 62d1b75 commit 96e8b53

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ export type {
151151
GraphQLAbstractType,
152152
GraphQLWrappingType,
153153
GraphQLNullableType,
154+
GraphQLNullableOutputType,
154155
GraphQLNamedType,
155156
GraphQLNamedInputType,
156157
GraphQLNamedOutputType,

src/type/definition.ts

+15-6
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ export function assertNonNullType(type: unknown): GraphQLNonNull<GraphQLType> {
214214

215215
export function isSemanticNonNullType(
216216
type: unknown,
217-
): type is GraphQLSemanticNonNull<GraphQLNullableType & GraphQLOutputType> {
217+
): type is GraphQLSemanticNonNull<GraphQLNullableOutputType> {
218218
return instanceOf(type, GraphQLSemanticNonNull);
219219
}
220220

221221
export function assertSemanticNonNullType(
222222
type: unknown,
223-
): GraphQLSemanticNonNull<GraphQLNullableType & GraphQLOutputType> {
223+
): GraphQLSemanticNonNull<GraphQLNullableOutputType> {
224224
if (!isSemanticNonNullType(type)) {
225225
throw new Error(
226226
`Expected ${inspect(type)} to be a GraphQL Semantic-Non-Null type.`,
@@ -475,9 +475,7 @@ export class GraphQLNonNull<T extends GraphQLNullableType> {
475475
*
476476
* @experimental
477477
*/
478-
export class GraphQLSemanticNonNull<
479-
T extends GraphQLNullableType & GraphQLOutputType,
480-
> {
478+
export class GraphQLSemanticNonNull<T extends GraphQLNullableOutputType> {
481479
readonly ofType: T;
482480

483481
constructor(ofType: T) {
@@ -509,7 +507,7 @@ export class GraphQLSemanticNonNull<
509507
export type GraphQLWrappingType =
510508
| GraphQLList<GraphQLType>
511509
| GraphQLNonNull<GraphQLNullableType>
512-
| GraphQLSemanticNonNull<GraphQLNullableType & GraphQLOutputType>;
510+
| GraphQLSemanticNonNull<GraphQLNullableOutputType>;
513511

514512
export function isWrappingType(type: unknown): type is GraphQLWrappingType {
515513
return isListType(type) || isNonNullType(type) || isSemanticNonNullType(type);
@@ -534,6 +532,17 @@ export type GraphQLNullableType =
534532
| GraphQLInputObjectType
535533
| GraphQLList<GraphQLType>;
536534

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+
537546
export function isNullableType(type: unknown): type is GraphQLNullableType {
538547
return isType(type) && !isNonNullType(type) && !isSemanticNonNullType(type);
539548
}

src/type/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export type {
7878
GraphQLAbstractType,
7979
GraphQLWrappingType,
8080
GraphQLNullableType,
81+
GraphQLNullableOutputType,
8182
GraphQLNamedType,
8283
GraphQLNamedInputType,
8384
GraphQLNamedOutputType,

0 commit comments

Comments
 (0)