gitlab-org--gitlab-foss/app/graphql/mutations/notes/destroy.rb

27 lines
525 B
Ruby

# frozen_string_literal: true
module Mutations
module Notes
class Destroy < Base
graphql_name 'DestroyNote'
authorize :admin_note
argument :id,
::Types::GlobalIDType[::Note],
required: true,
description: 'Global ID of the note to destroy.'
def resolve(id:)
note = authorized_find!(id: id)
::Notes::DestroyService.new(note.project, current_user).execute(note)
{
errors: []
}
end
end
end
end