Added introspect method to the schema

This commit is contained in:
Syrus Akbary 2015-09-29 02:38:50 -07:00
parent b3ecbb300f
commit 8274fcc5d9

View File

@ -52,6 +52,9 @@ class Schema(object):
operation_name=operation_name
)
def introspect(self):
return self._schema.get_type_map()
@signals.class_prepared.connect
def object_type_created(object_type):