summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/packages/destroy.rb
blob: 95832ec8b85e3b7f7587a40d3239a6023bd7750b (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
# frozen_string_literal: true

module Mutations
  module Packages
    class Destroy < ::Mutations::BaseMutation
      graphql_name 'DestroyPackage'

      authorize :destroy_package

      argument :id,
               ::Types::GlobalIDType[::Packages::Package],
               required: true,
               description: 'ID of the Package.'

      def resolve(id:)
        package = authorized_find!(id: id)

        result = ::Packages::MarkPackageForDestructionService.new(container: package, current_user: current_user).execute

        errors = result.error? ? Array.wrap(result[:message]) : []

        {
          errors: errors
        }
      end
    end
  end
end