summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/pagination/offset_paginated_relation.rb
blob: 8a8c6e5db50ff5227bf3606b4db10e4c73d9b028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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