Merge branch 'next' of github.com:graphql-python/graphene into next

This commit is contained in:
Syrus Akbary 2016-08-24 01:16:19 -07:00
commit ceffc4de69

View File

@ -2,6 +2,7 @@ from functools import partial
from sqlalchemy.orm.query import Query
from graphene.relay import ConnectionField
from graphene.relay.connection import PageInfo
from graphql_relay.connection.arrayconnection import connection_from_list_slice
from .utils import get_query
@ -28,6 +29,7 @@ class SQLAlchemyConnectionField(ConnectionField):
list_length=_len,
list_slice_length=_len,
connection_type=connection,
pageinfo_type=PageInfo,
edge_type=connection.Edge,
)