Fixed missing context arg

This commit is contained in:
Markus Padourek 2016-05-20 14:11:21 +01:00
parent e897efb79f
commit bc98505ee5

View File

@ -41,7 +41,7 @@ class ConnectionField(Field):
return resolved
return self.from_list(connection_type, resolved, args, context, info)
def from_list(self, connection_type, resolved, args, info):
def from_list(self, connection_type, resolved, args, context, info):
return connection_type.from_list(resolved, args, context, info)
def get_connection_type(self, node):