2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class Base < BaseMutation
|
2020-04-08 14:13:33 +05:30
|
|
|
include Mutations::ResolvesIssuable
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
argument :project_path, GraphQL::ID_TYPE,
|
|
|
|
required: true,
|
|
|
|
description: "The project the issue to mutate is in"
|
|
|
|
|
|
|
|
argument :iid, GraphQL::STRING_TYPE,
|
|
|
|
required: true,
|
2020-10-24 23:57:45 +05:30
|
|
|
description: "The IID of the issue to mutate"
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
field :issue,
|
|
|
|
Types::IssueType,
|
|
|
|
null: true,
|
|
|
|
description: "The issue after mutation"
|
|
|
|
|
|
|
|
authorize :update_issue
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(project_path:, iid:)
|
2020-04-08 14:13:33 +05:30
|
|
|
resolve_issuable(type: :issue, parent_path: project_path, iid: iid)
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|