2019-11-25 13:06:04 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Issues
|
|
|
|
class Base < BaseMutation
|
2020-03-02 13:07:42 -05:00
|
|
|
include Mutations::ResolvesIssuable
|
2019-11-25 13:06:04 -05:00
|
|
|
|
|
|
|
argument :project_path, GraphQL::ID_TYPE,
|
|
|
|
required: true,
|
2021-01-07 07:10:24 -05:00
|
|
|
description: "The project the issue to mutate is in."
|
2019-11-25 13:06:04 -05:00
|
|
|
|
2020-03-16 11:09:27 -04:00
|
|
|
argument :iid, GraphQL::STRING_TYPE,
|
2019-11-25 13:06:04 -05:00
|
|
|
required: true,
|
2021-01-07 07:10:24 -05:00
|
|
|
description: "The IID of the issue to mutate."
|
2019-11-25 13:06:04 -05:00
|
|
|
|
|
|
|
field :issue,
|
|
|
|
Types::IssueType,
|
|
|
|
null: true,
|
2021-01-07 07:10:24 -05:00
|
|
|
description: "The issue after mutation."
|
2019-11-25 13:06:04 -05:00
|
|
|
|
|
|
|
authorize :update_issue
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(project_path:, iid:)
|
2020-03-02 13:07:42 -05:00
|
|
|
resolve_issuable(type: :issue, parent_path: project_path, iid: iid)
|
2019-11-25 13:06:04 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|