Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base.rb « merge_requests « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57920259cf7ab3f144e8bcdb86dff233976be5ed (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
29
30
# frozen_string_literal: true

module Mutations
  module MergeRequests
    class Base < BaseMutation
      include Mutations::ResolvesIssuable

      argument :project_path, GraphQL::ID_TYPE,
               required: true,
               description: "The project the merge request to mutate is in"

      argument :iid, GraphQL::STRING_TYPE,
               required: true,
               description: "The IID of the merge request to mutate"

      field :merge_request,
            Types::MergeRequestType,
            null: true,
            description: "The merge request after mutation"

      authorize :update_merge_request

      private

      def find_object(project_path:, iid:)
        resolve_issuable(type: :merge_request, parent_path: project_path, iid: iid)
      end
    end
  end
end