debian-mirror-gitlab/app/graphql/mutations/issues/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
736 B
Ruby
Raw Normal View History

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
2021-10-27 15:23:28 +05:30
argument :project_path, GraphQL::Types::ID,
2020-01-01 13:55:28 +05:30
required: true,
2021-10-27 15:23:28 +05:30
description: "Project the issue to mutate is in."
2020-01-01 13:55:28 +05:30
2021-10-27 15:23:28 +05:30
argument :iid, GraphQL::Types::String,
2020-01-01 13:55:28 +05:30
required: true,
2021-10-27 15:23:28 +05:30
description: "IID of the issue to mutate."
2020-01-01 13:55:28 +05:30
field :issue,
Types::IssueType,
null: true,
2021-10-27 15:23:28 +05:30
description: "Issue after mutation."
2020-01-01 13:55:28 +05:30
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