2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
|
|
module Graphql
|
|
|
|
module Extensions
|
|
|
|
class ExternallyPaginatedArrayExtension < GraphQL::Schema::Field::ConnectionExtension
|
|
|
|
def resolve(object:, arguments:, context:)
|
2021-04-17 20:07:23 +05:30
|
|
|
yield(object, arguments, arguments)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|