gitlab-org--gitlab-foss/app/graphql/mutations/releases/base.rb

14 lines
308 B
Ruby

# frozen_string_literal: true
module Mutations
module Releases
class Base < BaseMutation
include FindsProject
argument :project_path, GraphQL::ID_TYPE,
required: true,
description: 'Full path of the project the release is associated with.'
end
end
end