debian-mirror-gitlab/app/graphql/mutations/todos/create.rb

40 lines
966 B
Ruby
Raw Normal View History

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-03-08 18:12:59 +05:30
description: "The 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-03-11 19:13:27 +05:30
description: 'The 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