2021-01-29 00:20:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Todos
|
2023-06-20 00:43:36 +05:30
|
|
|
class Create < ::Mutations::BaseMutation
|
2021-01-29 00:20:46 +05:30
|
|
|
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:)
|
2023-06-20 00:43:36 +05:30
|
|
|
target = authorized_find!(id: target_id)
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
todo = TodoService.new.mark_todo(target, current_user)&.first
|
|
|
|
errors = errors_on_object(todo) if todo
|
|
|
|
|
|
|
|
{
|
|
|
|
todo: todo,
|
|
|
|
errors: errors
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|