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

get_repository_query.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: d3e377c1175512d0a7704e2fc5bf25c2e7d00238 (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
32
33
34
35
36
37
# frozen_string_literal: true

module BulkImports
  module Projects
    module Graphql
      module GetRepositoryQuery
        extend self

        def to_s
          <<-'GRAPHQL'
          query($full_path: ID!) {
            project(fullPath: $full_path) {
              httpUrlToRepo
            }
          }
          GRAPHQL
        end

        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