mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 20:54:16 +03:00
Improved relay Connection
This commit is contained in:
parent
ac416b6ab0
commit
afd521de29
|
@ -8,41 +8,54 @@ from ..types.objecttype import ObjectType, ObjectTypeMeta
|
|||
|
||||
from ..utils.props import props
|
||||
|
||||
from ..types.field import Field, InputField
|
||||
from ..utils.get_fields import get_fields
|
||||
from ..utils.copy_fields import copy_fields
|
||||
from ..utils.props import props
|
||||
|
||||
|
||||
from ..types.objecttype import ObjectType
|
||||
|
||||
from ..utils.is_base_type import is_base_type
|
||||
from ..types.options import Options
|
||||
|
||||
|
||||
class ConnectionMeta(ObjectTypeMeta):
|
||||
|
||||
def get_options(cls, meta):
|
||||
options = cls.options_class(
|
||||
meta,
|
||||
def __new__(cls, name, bases, attrs):
|
||||
super_new = type.__new__
|
||||
|
||||
# Also ensure initialization is only performed for subclasses of Model
|
||||
# (excluding Model class itself).
|
||||
if not is_base_type(bases, ConnectionMeta):
|
||||
return super_new(cls, name, bases, attrs)
|
||||
|
||||
options = Options(
|
||||
attrs.pop('Meta', None),
|
||||
name=None,
|
||||
description=None,
|
||||
node=None,
|
||||
interfaces=[],
|
||||
abstract=False
|
||||
)
|
||||
options.graphql_type = None
|
||||
return options
|
||||
|
||||
def construct(cls, bases, attrs):
|
||||
if not cls._meta.abstract:
|
||||
Edge = attrs.pop('Edge', None)
|
||||
edge_fields = props(Edge) if Edge else {}
|
||||
edge_fields = get_fields(ObjectType, edge_fields, ())
|
||||
|
||||
edge_fields = {f.name: f for f in ObjectType._extract_local_fields(edge_fields)}
|
||||
local_fields = cls._extract_local_fields(attrs)
|
||||
connection_fields = copy_fields(Field, get_fields(ObjectType, attrs, bases))
|
||||
|
||||
cls = super(ConnectionMeta, cls).construct(bases, attrs)
|
||||
if not cls._meta.abstract:
|
||||
cls = super_new(cls, name, bases, dict(attrs, _meta=options))
|
||||
|
||||
assert options.node, 'You have to provide a node in {}.Meta'.format(cls.__name__)
|
||||
from ..utils.get_graphql_type import get_graphql_type
|
||||
assert cls._meta.node, 'You have to provide a node in {}.Meta'.format(cls.__name__)
|
||||
edge, connection = connection_definitions(
|
||||
name=cls._meta.name or re.sub('Connection$', '', cls.__name__),
|
||||
node_type=get_graphql_type(cls._meta.node),
|
||||
name=options.name or re.sub('Connection$', '', cls.__name__),
|
||||
node_type=get_graphql_type(options.node),
|
||||
resolve_node=cls.resolve_node,
|
||||
resolve_cursor=cls.resolve_cursor,
|
||||
|
||||
edge_fields=edge_fields,
|
||||
connection_fields=local_fields,
|
||||
connection_fields=connection_fields,
|
||||
)
|
||||
cls.Edge = type(edge.name, (ObjectType, ), {'Meta': type('Meta', (object,), {'graphql_type': edge})})
|
||||
cls._meta.graphql_type = connection
|
||||
|
@ -50,9 +63,6 @@ class ConnectionMeta(ObjectTypeMeta):
|
|||
|
||||
|
||||
class Connection(six.with_metaclass(ConnectionMeta, ObjectType)):
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
||||
resolve_node = None
|
||||
resolve_cursor = None
|
||||
|
||||
|
|
|
@ -9,8 +9,9 @@ def is_graphene_type(_type):
|
|||
from ..types.scalars import Scalar
|
||||
from ..types.enum import Enum
|
||||
from ..relay.mutation import ClientIDMutation
|
||||
from ..relay.connection import Connection
|
||||
|
||||
if _type in [Interface, InputObjectType, ObjectType, Mutation, ClientIDMutation]:
|
||||
if _type in [Interface, InputObjectType, ObjectType, Mutation, ClientIDMutation, Connection]:
|
||||
return False
|
||||
return inspect.isclass(_type) and issubclass(_type, (
|
||||
Interface,
|
||||
|
|
Loading…
Reference in New Issue
Block a user