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

31 lines
744 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
argument :project_path, GraphQL::ID_TYPE,
required: true,
2021-03-08 18:12:59 +05:30
description: "The project the issue to mutate is in."
2020-01-01 13:55:28 +05:30
argument :iid, GraphQL::STRING_TYPE,
required: true,
2021-03-08 18:12:59 +05:30
description: "The IID of the issue to mutate."
2020-01-01 13:55:28 +05:30
field :issue,
Types::IssueType,
null: true,
2021-03-08 18:12:59 +05:30
description: "The 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