debian-mirror-gitlab/app/graphql/mutations/notes/base.rb
2021-03-08 18:12:59 +05:30

22 lines
552 B
Ruby

# frozen_string_literal: true
module Mutations
module Notes
class Base < BaseMutation
field :note,
Types::Notes::NoteType,
null: true,
description: 'The note after mutation.'
private
def find_object(id:)
# 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)
end
end
end
end