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

full_path_resolver.rb « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8df54f49abbeb03d9688088baa4a0aa3cccfee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Resolvers
  module FullPathResolver
    extend ActiveSupport::Concern

    prepended do
      argument :full_path, GraphQL::Types::ID,
               required: true,
               description: 'Full path of the project, group, or namespace. For example, `gitlab-org/gitlab-foss`.'
    end

    def model_by_full_path(model, full_path)
      ::Gitlab::Graphql::Loaders::FullPathModelLoader.new(model, full_path).find
    end
  end
end