We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 728778e commit cfa0dd6Copy full SHA for cfa0dd6
src/utilities/TypeInfo.lua
@@ -85,11 +85,11 @@ end
85
-- */
86
export type TypeInfo = {
87
_schema: GraphQLSchema,
88
- _typeStack: Array<GraphQLOutputType? | NULL>,
89
- _parentTypeStack: Array<GraphQLCompositeType? | NULL>,
90
- _inputTypeStack: Array<GraphQLInputType? | NULL>,
91
- _fieldDefStack: Array<GraphQLField<any, any>? | NULL>,
92
- _defaultValueStack: Array<any? | NULL>,
+ _typeStack: Array<NULL | GraphQLOutputType?>,
+ _parentTypeStack: Array<NULL | GraphQLCompositeType?>,
+ _inputTypeStack: Array<NULL | GraphQLInputType?>,
+ _fieldDefStack: Array<NULL | GraphQLField<any, any>?>,
+ _defaultValueStack: Array<NULL | any?>,
93
_directive: GraphQLDirective?,
94
_argument: GraphQLArgument?,
95
_enumValue: GraphQLEnumValue?,
0 commit comments