2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
class ReleaseResolver < BaseResolver
|
|
|
|
type Types::ReleaseType, null: true
|
|
|
|
|
|
|
|
argument :tag_name, GraphQL::STRING_TYPE,
|
|
|
|
required: true,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'The name of the tag associated to the release.'
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
alias_method :project, :object
|
|
|
|
|
|
|
|
def self.single
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def resolve(tag_name:)
|
|
|
|
ReleasesFinder.new(
|
|
|
|
project,
|
|
|
|
current_user,
|
|
|
|
{ tag: tag_name }
|
|
|
|
).execute.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|