Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0f13010

Browse files
committedFeb 2, 2025·
Fix a few tests
1 parent 17461b9 commit 0f13010

14 files changed

+73
-42
lines changed
 

‎src/execution/__tests__/executor-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ describe('Execute: Handles basic execution tasks', () => {
276276
schema,
277277
rootValue,
278278
operation,
279-
errorPropagation: true
279+
errorPropagation: true,
280280
});
281281

282282
const field = operation.selectionSet.selections[0];

‎src/execution/execute.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export interface ExecutionArgs {
161161
*
162162
* @experimental
163163
*/
164-
errorPropagation?: boolean;
164+
errorPropagation?: boolean;
165165
}
166166

167167
/**
@@ -296,7 +296,7 @@ export function buildExecutionContext(
296296
fieldResolver,
297297
typeResolver,
298298
subscribeFieldResolver,
299-
errorPropagation
299+
errorPropagation,
300300
} = args;
301301

302302
let operation: OperationDefinitionNode | undefined;
@@ -671,7 +671,7 @@ function completeValue(
671671
return completed;
672672
}
673673

674-
// If field type is SemanticNonNull, complete for inner type, and throw field error
674+
// If field type is SemanticNonNull, complete for inner type, and throw field error
675675
// if result is null and an error doesn't exist.
676676
if (isSemanticNonNullType(returnType)) {
677677
const completed = completeValue(

‎src/language/__tests__/parser-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ describe('Parser', () => {
659659
});
660660

661661
describe('parseDocumentDirective', () => {
662-
it('doesnt throw on document-level directive', () => {
662+
it('doesn\'t throw on document-level directive', () => {
663663
parse(dedent`
664664
@SemanticNullability
665665
type Query {

‎src/language/__tests__/predicates-test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ describe('AST node predicates', () => {
9393
'ListType',
9494
'NonNullType',
9595
'SemanticNonNullType',
96+
'SemanticNullableType',
9697
]);
9798
});
9899

‎src/language/ast.ts

-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,6 @@ export interface ConstDirectiveNode {
523523
readonly arguments?: ReadonlyArray<ConstArgumentNode>;
524524
}
525525

526-
527526
export interface SemanticNonNullTypeNode {
528527
readonly kind: Kind.SEMANTIC_NON_NULL_TYPE;
529528
readonly loc?: Location;

‎src/language/lexer.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,12 @@ function readNextToken(lexer: Lexer, start: number): Token {
251251
case 0x0021: // !
252252
return createToken(lexer, TokenKind.BANG, position, position + 1);
253253
case 0x003f: // ?
254-
return createToken(lexer, TokenKind.QUESTION_MARK, position, position + 1);
254+
return createToken(
255+
lexer,
256+
TokenKind.QUESTION_MARK,
257+
position,
258+
position + 1,
259+
);
255260
case 0x0024: // $
256261
return createToken(lexer, TokenKind.DOLLAR, position, position + 1);
257262
case 0x0026: // &

‎src/language/parser.ts

+22-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ import type {
5050
SchemaExtensionNode,
5151
SelectionNode,
5252
SelectionSetNode,
53-
StringValueNode,
5453
SemanticNonNullTypeNode,
5554
SemanticNullableTypeNode,
55+
StringValueNode,
5656
Token,
5757
TypeNode,
5858
TypeSystemExtensionNode,
@@ -109,10 +109,10 @@ export interface ParseOptions {
109109
/**
110110
* When enabled, the parser will understand and parse semantic nullability
111111
* annotations. This means that every type suffixed with `!` will remain
112-
* non-nulllable, every type suffxed with `?` will be the classic nullable, and
112+
* non-nullable, every type suffixed with `?` will be the classic nullable, and
113113
* types without a suffix will be semantically nullable. Semantic nullability
114114
* will be the new default when this is enabled. A semantically nullable type
115-
* can only be null when there's an error assocaited with the field.
115+
* can only be null when there's an error associated with the field.
116116
*
117117
* @experimental
118118
*/
@@ -788,6 +788,25 @@ export class Parser {
788788
type = this.parseNamedType();
789789
}
790790

791+
if (this._options.allowSemanticNullability) {
792+
if (this.expectOptionalToken(TokenKind.BANG)) {
793+
return this.node<NonNullTypeNode>(start, {
794+
kind: Kind.NON_NULL_TYPE,
795+
type,
796+
});
797+
} else if (this.expectOptionalToken(TokenKind.QUESTION_MARK)) {
798+
return this.node<SemanticNullableTypeNode>(start, {
799+
kind: Kind.SEMANTIC_NULLABLE_TYPE,
800+
type,
801+
});
802+
}
803+
804+
return this.node<SemanticNonNullTypeNode>(start, {
805+
kind: Kind.SEMANTIC_NON_NULL_TYPE,
806+
type,
807+
});
808+
}
809+
791810
if (this.expectOptionalToken(TokenKind.BANG)) {
792811
return this.node<NonNullTypeNode>(start, {
793812
kind: Kind.NON_NULL_TYPE,

‎src/type/__tests__/introspection-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('Introspection', () => {
3232
expect(result).to.deep.equal({
3333
data: {
3434
__schema: {
35-
queryType: { name: 'SomeObject' },
35+
queryType: { kind: 'OBJECT', name: 'SomeObject' },
3636
mutationType: null,
3737
subscriptionType: null,
3838
types: [

‎src/type/__tests__/predicate-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,4 +765,4 @@ describe('Directive predicates', () => {
765765
expect(isSpecifiedDirective(Directive)).to.equal(false);
766766
});
767767
});
768-
});
768+
});

‎src/type/definition.ts

+26-24
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,24 @@ export type GraphQLType =
6767
| GraphQLInputObjectType
6868
| GraphQLList<GraphQLType>
6969
>
70-
| GraphQLSemanticNonNull<
71-
| GraphQLScalarType
72-
| GraphQLObjectType
73-
| GraphQLInterfaceType
74-
| GraphQLUnionType
75-
| GraphQLEnumType
76-
| GraphQLInputObjectType
77-
| GraphQLList<GraphQLType>
78-
>
70+
| GraphQLSemanticNonNull<
71+
| GraphQLScalarType
72+
| GraphQLObjectType
73+
| GraphQLInterfaceType
74+
| GraphQLUnionType
75+
| GraphQLEnumType
76+
| GraphQLInputObjectType
77+
| GraphQLList<GraphQLType>
78+
>
7979
| GraphQLSemanticNullable<
80-
| GraphQLScalarType
81-
| GraphQLObjectType
82-
| GraphQLInterfaceType
83-
| GraphQLUnionType
84-
| GraphQLEnumType
85-
| GraphQLInputObjectType
86-
| GraphQLList<GraphQLType>
87-
>;
80+
| GraphQLScalarType
81+
| GraphQLObjectType
82+
| GraphQLInterfaceType
83+
| GraphQLUnionType
84+
| GraphQLEnumType
85+
| GraphQLInputObjectType
86+
| GraphQLList<GraphQLType>
87+
>;
8888

8989
export function isType(type: unknown): type is GraphQLType {
9090
return (
@@ -325,13 +325,15 @@ export type GraphQLOutputType =
325325
| GraphQLUnionType
326326
| GraphQLEnumType
327327
| GraphQLList<GraphQLOutputType>
328-
> | GraphQLSemanticNonNull<
329-
| GraphQLScalarType
330-
| GraphQLObjectType
331-
| GraphQLInterfaceType
332-
| GraphQLUnionType
333-
| GraphQLEnumType
334-
| GraphQLList<GraphQLOutputType> >;
328+
>
329+
| GraphQLSemanticNonNull<
330+
| GraphQLScalarType
331+
| GraphQLObjectType
332+
| GraphQLInterfaceType
333+
| GraphQLUnionType
334+
| GraphQLEnumType
335+
| GraphQLList<GraphQLOutputType>
336+
>;
335337

336338
export function isOutputType(type: unknown): type is GraphQLOutputType {
337339
return (

‎src/type/introspection.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -417,10 +417,10 @@ export const __Field: GraphQLObjectType = new GraphQLObjectType({
417417
}
418418

419419
const mode =
420-
nullability === TypeNullability.AUTO
421-
? info.errorPropagation
422-
? TypeNullability.TRADITIONAL
423-
: TypeNullability.SEMANTIC
420+
nullability === TypeNullability.AUTO
421+
? info.errorPropagation
422+
? TypeNullability.TRADITIONAL
423+
: TypeNullability.SEMANTIC
424424
: nullability;
425425
return convertOutputTypeToNullabilityMode(field.type, mode);
426426
},

‎src/utilities/buildClientSchema.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
GraphQLNonNull,
2323
GraphQLObjectType,
2424
GraphQLScalarType,
25-
GraphQLUnionType,
2625
GraphQLSemanticNonNull,
26+
GraphQLUnionType,
2727
isInputType,
2828
isOutputType,
2929
} from '../type/definition';

‎src/utilities/extendSchema.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ import {
5353
GraphQLNonNull,
5454
GraphQLObjectType,
5555
GraphQLScalarType,
56-
GraphQLUnionType,
5756
GraphQLSemanticNonNull,
5857
GraphQLSemanticNullable,
58+
GraphQLUnionType,
5959
isEnumType,
6060
isInputObjectType,
6161
isInterfaceType,

‎src/utilities/typeFromAST.ts

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
GraphQLList,
1212
GraphQLNonNull,
1313
GraphQLSemanticNonNull,
14+
GraphQLSemanticNullable,
1415
} from '../type/definition';
1516
import type { GraphQLSchema } from '../type/schema';
1617

@@ -54,6 +55,10 @@ export function typeFromAST(
5455
const innerType = typeFromAST(schema, typeNode.type);
5556
return innerType && new GraphQLSemanticNonNull(innerType);
5657
}
58+
case Kind.SEMANTIC_NULLABLE_TYPE: {
59+
const innerType = typeFromAST(schema, typeNode.type);
60+
return innerType && new GraphQLSemanticNullable(innerType);
61+
}
5762
case Kind.NAMED_TYPE:
5863
return schema.getType(typeNode.name.value);
5964
}

0 commit comments

Comments
 (0)
Please sign in to comment.