You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -803,6 +803,23 @@ describe('Type System Printer', () => {
803
803
deprecationReason: String
804
804
}
805
805
806
+
"""TODO"""
807
+
enum __TypeNullability {
808
+
"""Determines nullability mode based on errorPropagation mode."""
809
+
AUTO
810
+
811
+
"""Turn semantic-non-null types into nullable types."""
812
+
TRADITIONAL
813
+
814
+
"""Turn non-null types into semantic-non-null types."""
815
+
SEMANTIC
816
+
817
+
"""
818
+
Render the true nullability in the schema; be prepared for new types of nullability in future!
819
+
"""
820
+
FULL
821
+
}
822
+
806
823
"""
807
824
One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
808
825
"""
@@ -887,13 +904,6 @@ describe('Type System Printer', () => {
887
904
"""Location adjacent to an input object field definition."""
0 commit comments