mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-08 23:50:38 +03:00
Fixed missing context arg
This commit is contained in:
parent
e897efb79f
commit
bc98505ee5
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue
Block a user