Welcome to mirror list, hosted at ThFree Co, Russian Federation.

queryable.rb « graphql « projects « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd3116cb8380214a48b913fb35c0a6f3dffe15b1 (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
26
27
28
29
30
31
# frozen_string_literal: true

module BulkImports
  module Projects
    module Graphql
      module Queryable
        attr_reader :context

        def initialize(context:)
          @context = context
        end

        def variables
          { 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