2021-01-29 00:20:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Todos
|
|
|
|
class Create < ::Mutations::Todos::Base
|
|
|
|
graphql_name 'TodoCreate'
|
|
|
|
|
|
|
|
authorize :create_todo
|
|
|
|
|
|
|
|
argument :target_id,
|
|
|
|
Types::GlobalIDType[Todoable],
|
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: "Global ID of the to-do item's parent. Issues, merge requests, designs, and epics are supported."
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
field :todo, Types::TodoType,
|
|
|
|
null: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: 'To-do item created.'
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
def resolve(target_id:)
|
|
|
|
id = ::Types::GlobalIDType[Todoable].coerce_isolated_input(target_id)
|
|
|
|
target = authorized_find!(id)
|
|
|
|
|
|
|
|
todo = TodoService.new.mark_todo(target, current_user)&.first
|
|
|
|
errors = errors_on_object(todo) if todo
|
|
|
|
|
|
|
|
{
|
|
|
|
todo: todo,
|
|
|
|
errors: errors
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_object(id)
|
|
|
|
GitlabSchema.find_by_gid(id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|