Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions graphene_sqlalchemy/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from graphene import NonNull
from graphene.relay import Connection, ConnectionField
from graphene.relay.connection import PageInfo
from graphql_relay.connection.arrayconnection import connection_from_list_slice
from graphql_relay import connection_from_array_slice

from .batching import get_batch_resolver
from .utils import get_query
Expand Down Expand Up @@ -53,7 +53,7 @@ def resolve_connection(cls, connection_type, model, info, args, resolved):
_len = resolved.count()
else:
_len = len(resolved)
connection = connection_from_list_slice(
connection = connection_from_array_slice(
resolved,
args,
slice_start=0,
Expand Down