mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 01:26:49 +03:00
Prettified schema
This commit is contained in:
parent
7b26e8d458
commit
ff3dc6a66d
|
@ -104,4 +104,10 @@ class Schema(GraphQLSchema):
|
||||||
]
|
]
|
||||||
if self.types:
|
if self.types:
|
||||||
initial_types += self.types
|
initial_types += self.types
|
||||||
self._type_map = TypeMap(initial_types, auto_camelcase=self.auto_camelcase, schema=self, resolvers=self._resolvers)
|
|
||||||
|
self._type_map = TypeMap(
|
||||||
|
initial_types,
|
||||||
|
auto_camelcase=self.auto_camelcase,
|
||||||
|
schema=self,
|
||||||
|
resolvers=self._resolvers
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user