Skip to content
Snippets Groups Projects
Unverified Commit aa38324b authored by Peter Leitzen's avatar Peter Leitzen
Browse files

Yield original arguments in connection extension

This helps upgrading to graphql 1.11.7.

See https://github.com/rmosolgo/graphql-ruby/pull/3168
parent 72e1c80b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ module Graphql
module Extensions
class ExternallyPaginatedArrayExtension < GraphQL::Schema::Field::ConnectionExtension
def resolve(object:, arguments:, context:)
yield(object, arguments)
yield(object, arguments, arguments)
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment