gitlab-org--gitlab-foss/lib/gitlab/graphql/pagination/offset_paginated_relation.rb

13 lines
252 B
Ruby

# frozen_string_literal: true
# Marker class to enable us to choose the correct
# connection type during resolution
module Gitlab
module Graphql
module Pagination
class OffsetPaginatedRelation < SimpleDelegator
end
end
end
end