debian-mirror-gitlab/app/graphql/resolvers/full_path_resolver.rb

18 lines
473 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
module Resolvers
module FullPathResolver
extend ActiveSupport::Concern
prepended do
2021-10-27 15:23:28 +05:30
argument :full_path, GraphQL::Types::ID,
2018-11-08 19:23:39 +05:30
required: true,
2021-10-27 15:23:28 +05:30
description: 'Full path of the project, group, or namespace. For example, `gitlab-org/gitlab-foss`.'
2018-11-08 19:23:39 +05:30
end
def model_by_full_path(model, full_path)
2020-06-23 00:09:42 +05:30
::Gitlab::Graphql::Loaders::FullPathModelLoader.new(model, full_path).find
2018-11-08 19:23:39 +05:30
end
end
end