@@ -50,9 +50,9 @@ import type {
50
50
SchemaExtensionNode ,
51
51
SelectionNode ,
52
52
SelectionSetNode ,
53
- StringValueNode ,
54
53
SemanticNonNullTypeNode ,
55
54
SemanticNullableTypeNode ,
55
+ StringValueNode ,
56
56
Token ,
57
57
TypeNode ,
58
58
TypeSystemExtensionNode ,
@@ -109,10 +109,10 @@ export interface ParseOptions {
109
109
/**
110
110
* When enabled, the parser will understand and parse semantic nullability
111
111
* 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
113
113
* types without a suffix will be semantically nullable. Semantic nullability
114
114
* 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.
116
116
*
117
117
* @experimental
118
118
*/
@@ -788,6 +788,25 @@ export class Parser {
788
788
type = this . parseNamedType ( ) ;
789
789
}
790
790
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
+
791
810
if ( this . expectOptionalToken ( TokenKind . BANG ) ) {
792
811
return this . node < NonNullTypeNode > ( start , {
793
812
kind : Kind . NON_NULL_TYPE ,
0 commit comments