mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
13 lines
312 B
Ruby
13 lines
312 B
Ruby
# frozen_string_literal: true
|
|
module Gitlab
|
|
module Graphql
|
|
module Extensions
|
|
class ExternallyPaginatedArrayExtension < GraphQL::Schema::Field::ConnectionExtension
|
|
def resolve(object:, arguments:, context:)
|
|
yield(object, arguments, arguments)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|