debian-mirror-gitlab/lib/gitlab/graphql/pagination/offset_paginated_relation.rb
2021-03-11 19:13:27 +05:30

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