base.rb 941 Bytes
Newer Older
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 29 30 31
# frozen_string_literal: true

module Mutations
  module DesignManagement
    class Base < ::Mutations::BaseMutation
      include Gitlab::Graphql::Authorize::AuthorizeResource
      include Mutations::ResolvesProject

      argument :project_path, GraphQL::ID_TYPE,
               required: true,
               description: "The project where the issue is to upload designs for"

      argument :iid, GraphQL::ID_TYPE,
               required: true,
               description: "The iid of the issue to modify designs for"

      field :designs, [Types::DesignManagement::DesignType],
            null: false,
            description: "The designs that were updated by the mutation"

      private

      def find_object(project_path:, iid:)
        project = resolve_project(full_path: project_path)

        Resolvers::IssuesResolver.single.new(object: project, context: context)
          .resolve(iid: iid)
      end
    end
  end
end