summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/projects/graphql/queryable.rb
blob: a897632dff379f87d990bc346a1ec729ff7f37e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module BulkImports
  module Projects
    module Graphql
      module Queryable
        def variables(context)
          { full_path: context.entity.source_full_path }
        end

        def base_path
          %w[data project]
        end

        def data_path
          base_path
        end

        def page_info_path
          base_path << 'page_info'
        end
      end
    end
  end
end