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

22 lines
552 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
module Mutations
module Notes
class Base < BaseMutation
field :note,
Types::Notes::NoteType,
null: true,
2021-03-08 18:12:59 +05:30
description: 'The note after mutation.'
2019-09-30 21:07:59 +05:30
private
def find_object(id:)
2021-01-03 14:25:43 +05:30
# TODO: remove explicit coercion once compatibility layer has been removed
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
id = ::Types::GlobalIDType[::Note].coerce_isolated_input(id)
GitlabSchema.find_by_gid(id)
2019-09-30 21:07:59 +05:30
end
end
end
end