Allow types to be abstract

This commit is contained in:
Syrus Akbary 2017-07-26 19:26:54 -07:00
parent e71b59a8c3
commit c7c611266b
4 changed files with 14 additions and 12 deletions

View File

@ -19,9 +19,7 @@ class Interface(BaseType):
when the field is resolved.
'''
@classmethod
def __init_subclass_with_meta__(cls, abstract=False, _meta=None, **options):
if abstract:
return
def __init_subclass_with_meta__(cls, _meta=None, **options):
if not _meta:
_meta = InterfaceOptions(cls)

View File

@ -20,9 +20,7 @@ class Mutation(ObjectType):
'''
@classmethod
def __init_subclass_with_meta__(cls, resolver=None, output=None, arguments=None,
_meta=None, abstract=False, **options):
if abstract:
return
_meta=None, **options):
if not _meta:
_meta = MutationOptions(cls)

View File

@ -22,9 +22,7 @@ class ObjectType(BaseType):
def __init_subclass_with_meta__(
cls, interfaces=(),
possible_types=(),
default_resolver=None, _meta=None, abstract=False, **options):
if abstract:
return
default_resolver=None, _meta=None, **options):
if not _meta:
_meta = ObjectTypeOptions(cls)

View File

@ -27,9 +27,17 @@ class SubclassWithMeta(six.with_metaclass(SubclassWithMeta_Meta)):
raise Exception("Meta have to be either a class or a dict. Received {}".format(_Meta))
delattr(cls, "Meta")
options = dict(meta_options, **_meta_props)
super_class = super(cls, cls)
if hasattr(super_class, '__init_subclass_with_meta__'):
super_class.__init_subclass_with_meta__(**options)
abstract = options.pop('abstract', False)
if abstract:
assert not options, (
"Abstract types can only contain the abstract attribute. "
"Received: abstract, {option_keys}"
).format(option_keys=', '.join(options.keys()))
else:
super_class = super(cls, cls)
if hasattr(super_class, '__init_subclass_with_meta__'):
super_class.__init_subclass_with_meta__(**options)
@classmethod
def __init_subclass_with_meta__(cls, **meta_options):