Skip to content

Commit c77d514

Browse files
authored
Make 'GraphQLInputFieldOutType' importable (#195)
1 parent f045a32 commit c77d514

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/graphql/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@
347347
GraphQLFieldResolver,
348348
GraphQLInputField,
349349
GraphQLInputFieldMap,
350+
GraphQLInputFieldOutType,
350351
GraphQLScalarSerializer,
351352
GraphQLScalarValueParser,
352353
GraphQLScalarLiteralParser,
@@ -567,6 +568,7 @@
567568
"GraphQLFieldResolver",
568569
"GraphQLInputField",
569570
"GraphQLInputFieldMap",
571+
"GraphQLInputFieldOutType",
570572
"GraphQLScalarSerializer",
571573
"GraphQLScalarValueParser",
572574
"GraphQLScalarLiteralParser",

src/graphql/type/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
GraphQLFieldMap,
9999
GraphQLInputField,
100100
GraphQLInputFieldMap,
101+
GraphQLInputFieldOutType,
101102
GraphQLScalarSerializer,
102103
GraphQLScalarValueParser,
103104
GraphQLScalarLiteralParser,
@@ -252,6 +253,7 @@
252253
"GraphQLFieldMap",
253254
"GraphQLInputField",
254255
"GraphQLInputFieldMap",
256+
"GraphQLInputFieldOutType",
255257
"GraphQLScalarSerializer",
256258
"GraphQLScalarValueParser",
257259
"GraphQLScalarLiteralParser",

src/graphql/type/definition.py

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
"GraphQLInputField",
130130
"GraphQLInputFieldKwargs",
131131
"GraphQLInputFieldMap",
132+
"GraphQLInputFieldOutType",
132133
"GraphQLInputObjectType",
133134
"GraphQLInputObjectTypeKwargs",
134135
"GraphQLInputType",

0 commit comments

Comments
 (0)