本文整理匯總了Python中graphene.Interface方法的典型用法代碼示例。如果您正苦於以下問題:Python graphene.Interface方法的具體用法?Python graphene.Interface怎麽用?Python graphene.Interface使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類graphene
的用法示例。
在下文中一共展示了graphene.Interface方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init_subclass_with_meta__
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def __init_subclass_with_meta__(cls, _meta=None, **options):
if not _meta:
_meta = InterfaceOptions(cls)
fields = {}
for base in reversed(cls.__mro__):
fields.update(yank_fields_from_attrs(base.__dict__, _as=Field))
if _meta.fields:
_meta.fields.update(fields)
else:
_meta.fields = fields
super(Interface, cls).__init_subclass_with_meta__(_meta=_meta, **options)
示例2: __init__
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def __init__(self, *args, **kwargs):
raise Exception("An Interface cannot be initialized")
示例3: test_pynamo_interface
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_pynamo_interface():
assert issubclass(Node, Interface)
assert issubclass(Node, Node)
示例4: __init__
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def __init__(self):
self._typeMap = {}
self.Field = create_registry_field(self)
self.Argument = create_registry_argument(self)
self.List = create_registry_list(self)
self.NonNull = create_registry_nonnull(self)
registering_metaclass = create_registering_metaclass(self)
self.Union = create_union(registering_metaclass, self)
self.Enum = create_enum(registering_metaclass)
self.Mutation = graphene.Mutation
# Not looping over GRAPHENE_TYPES in order to not fool lint
self.ObjectType = create_registering_class(graphene.ObjectType, registering_metaclass)
self.InputObjectType = create_registering_class(
graphene.InputObjectType, registering_metaclass
)
self.Interface = create_registering_class(graphene.Interface, registering_metaclass)
self.Scalar = create_registering_class(graphene.Scalar, registering_metaclass)
# Not looping over GRAPHENE_BUILTINS in order to not fool lint
self.String = graphene.String
self.addType(graphene.String)
self.Int = graphene.Int
self.addType(graphene.Int)
self.Float = graphene.Float
self.addType(graphene.Float)
self.Boolean = graphene.Boolean
self.addType(graphene.Boolean)
self.ID = graphene.ID
self.addType(graphene.ID)
self.GenericScalar = GenericScalar
self.addType(GenericScalar)
示例5: test_mongoengine_interface
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_mongoengine_interface():
assert issubclass(Node, Interface)
assert issubclass(Node, Node)
示例6: test_django_interface
# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_django_interface():
assert issubclass(Node, Interface)
assert issubclass(Node, Node)