Python graphene.Interface() Examples
The following are 6
code examples of graphene.Interface().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
graphene
, or try the search function
.
Example #1
Source File: interface.py From graphene with MIT License | 5 votes |
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)
Example #2
Source File: interface.py From graphene with MIT License | 5 votes |
def __init__(self, *args, **kwargs): raise Exception("An Interface cannot be initialized")
Example #3
Source File: test_types.py From graphql-pynamodb with MIT License | 5 votes |
def test_pynamo_interface(): assert issubclass(Node, Interface) assert issubclass(Node, Node)
Example #4
Source File: test_types.py From graphene-mongo with MIT License | 5 votes |
def test_mongoengine_interface(): assert issubclass(Node, Interface) assert issubclass(Node, Node)
Example #5
Source File: test_types.py From graphene-django with MIT License | 5 votes |
def test_django_interface(): assert issubclass(Node, Interface) assert issubclass(Node, Node)
Example #6
Source File: dauphin_registry.py From dagster with Apache License 2.0 | 4 votes |
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)