We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44334f3 commit dae8e8fCopy full SHA for dae8e8f
src/graphql/utilities/get_introspection_query.py
@@ -302,7 +302,8 @@ class IntrospectionSchema(MaybeWithDescription):
302
directives: list[IntrospectionDirective]
303
304
305
-class IntrospectionQuery(TypedDict):
306
- """The root typed dictionary for schema introspections."""
307
-
308
- __schema: IntrospectionSchema
+# The root typed dictionary for schema introspections.
+IntrospectionQuery = TypedDict( # noqa: UP013
+ "IntrospectionQuery",
+ {"__schema": IntrospectionSchema},
309
+)
0 commit comments