當前位置: 首頁>>代碼示例>>Python>>正文


Python graphene.Interface方法代碼示例

本文整理匯總了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) 
開發者ID:graphql-python,項目名稱:graphene,代碼行數:16,代碼來源:interface.py

示例2: __init__

# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def __init__(self, *args, **kwargs):
        raise Exception("An Interface cannot be initialized") 
開發者ID:graphql-python,項目名稱:graphene,代碼行數:4,代碼來源:interface.py

示例3: test_pynamo_interface

# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_pynamo_interface():
    assert issubclass(Node, Interface)
    assert issubclass(Node, Node) 
開發者ID:yfilali,項目名稱:graphql-pynamodb,代碼行數:5,代碼來源:test_types.py

示例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) 
開發者ID:dagster-io,項目名稱:dagster,代碼行數:34,代碼來源:dauphin_registry.py

示例5: test_mongoengine_interface

# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_mongoengine_interface():
    assert issubclass(Node, Interface)
    assert issubclass(Node, Node) 
開發者ID:graphql-python,項目名稱:graphene-mongo,代碼行數:5,代碼來源:test_types.py

示例6: test_django_interface

# 需要導入模塊: import graphene [as 別名]
# 或者: from graphene import Interface [as 別名]
def test_django_interface():
    assert issubclass(Node, Interface)
    assert issubclass(Node, Node) 
開發者ID:graphql-python,項目名稱:graphene-django,代碼行數:5,代碼來源:test_types.py


注:本文中的graphene.Interface方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。